Skip to content

Commit e9f71da

Browse files
committed
fix: timeout to higher one
1 parent 0711e78 commit e9f71da

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3"
22

33
env:
4-
tag_version: v1.2.4
4+
tag_version: v1.3.0
55

66
tasks:
77
build-version:

app/settings/worker/worker_temp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func WithDisableParallelism[T ITask](disable_parallelism worker_types.DebugDisab
6464
func NewTaskPool[T ITask](opts ...TaskPoolOption[T]) *TaskPool[T] {
6565
j := &TaskPool[T]{
6666
numWorkers: 3,
67-
taskTimeout: 30,
67+
taskTimeout: 120,
6868
}
6969

7070
for _, opt := range opts {

infra/tf/production/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ module "darkbot" {
2727
configurator_dbname = "production"
2828
consoler_prefix = "."
2929
secrets = local.secrets
30-
tag_version = "v1.2.4"
30+
tag_version = "v1.3.0"
3131
}

infra/tf/staging/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module "darkbot" {
2727
configurator_dbname = "staging"
2828
consoler_prefix = ","
2929
secrets = local.secrets
30-
tag_version = "v1.2.4"
30+
tag_version = "v1.3.0"
3131
debug = false
3232
}
3333

0 commit comments

Comments
 (0)