Skip to content

Commit

Permalink
Fix nil pointer deref on executor.go:103
Browse files Browse the repository at this point in the history
  • Loading branch information
DrJosh9000 committed Jan 6, 2025
1 parent 5d2a256 commit a56597c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/job/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (e *Executor) Run(ctx context.Context) (exitCode int) {

socket := &kubernetes.Client{ID: e.KubernetesContainerID}
if err := e.kubernetesSetup(ctx, environ, socket); err != nil {
e.shell.Errorf("Failed to start kubernetes socket client: %v", err)
tempLog.Errorf("Failed to start kubernetes socket client: %v", err)
return 1
}

Expand Down

0 comments on commit a56597c

Please sign in to comment.