Skip to content

Commit

Permalink
rolls back worker defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzelei committed Jul 4, 2024
1 parent bf69c75 commit b94dffd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion worker/charts/worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ temporal:
# -- If not provided, falls back to hardcoded default value
namespace:
# -- If not provided, falls back to hardcoded default value
taskQueue: sync-job
taskQueue:
certificate:
# -- The location of the certificate key file
keyFilePath:
Expand Down
2 changes: 1 addition & 1 deletion worker/internal/cmds/worker/serve/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func serve(ctx context.Context) error {

taskQueue := viper.GetString("TEMPORAL_TASK_QUEUE")
if taskQueue == "" {
taskQueue = "sync-job"
return errors.New("must provide TEMPORAL_TASK_QUEUE environment variable")
}

certificates, err := getTemporalAuthCertificate()
Expand Down

0 comments on commit b94dffd

Please sign in to comment.