Skip to content

Commit

Permalink
fix workerCheckDelay and set smaller default value
Browse files Browse the repository at this point in the history
  • Loading branch information
jfonseca-aneo committed Mar 1, 2023
1 parent c5cf427 commit c2fe681
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 c2fe681

Please sign in to comment.