Skip to content

Commit

Permalink
fix: workerCheckDelay in deployment (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
aneojgurhem authored Mar 1, 2023
2 parents c5cf427 + c2fe681 commit 062ff30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/modules/compute_plane/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ locals {
env = [
"Pollster__MaxErrorAllowed=${var.polling_agent.max_error_allowed}",
"InitWorker__WorkerCheckRetries=${var.polling_agent.worker_check_retries}",
"InitWorker__WorkerCheckDelay=${var.polling_agent.worker_check_retries}",
"InitWorker__WorkerCheckDelay=${var.polling_agent.worker_check_delay}",
"Zipkin__Uri=${var.zipkin_uri}",
"Amqp__PartitionId=TestPartition${local.partition_chooser}"
]
Expand Down
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ variable "compute_plane" {
port = optional(number, 9980)
max_error_allowed = optional(number, -1)
worker_check_retries = optional(number, 10)
worker_check_delay = optional(string, "00:00:10")
worker_check_delay = optional(string, "00:00:01")
})
})
default = {
Expand Down

0 comments on commit 062ff30

Please sign in to comment.