Skip to content

Commit

Permalink
fix: Correct typo that meant ARGO_DATAFLOW_UNIX_DOMAIN_SOCKET was ign…
Browse files Browse the repository at this point in the history
…ored.

Signed-off-by: Alex Collins <[email protected]>
  • Loading branch information
alexec committed Sep 20, 2021
1 parent 0023aa7 commit 32f3e63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion api/v1alpha1/step_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (in Step) GetPodSpec(req GetPodSpecReq) corev1.PodSpec {
}

for _, n := range []string{EnvDebug, EnvUnixDomainSocket} {
if value, ok := os.LookupEnv(EnvDebug); ok {
if value, ok := os.LookupEnv(n); ok {
envVars = append(envVars, corev1.EnvVar{Name: n, Value: value})
}
}
Expand Down
1 change: 1 addition & 0 deletions manager.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export ARGO_DATAFLOW_CLUSTER=default
export ARGO_DATAFLOW_NAMESPACE=argo-dataflow-system
export ARGO_DATAFLOW_PULL_POLICY=IfNotPresent
export ARGO_DATAFLOW_UPDATE_INTERVAL=10s
# export ARGO_DATAFLOW_UNIX_DOMAIN_SOCKET=false
export GODEBUG=
# export JAEGER_DISABLED=false
export JAEGER_ENDPOINT=http://my-jaeger-collector:14268/api/traces
Expand Down

0 comments on commit 32f3e63

Please sign in to comment.