We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cf69e8 commit 8ad75c6Copy full SHA for 8ad75c6
pkg/task/module-run/task.go
@@ -92,11 +92,9 @@ func NewTask(
92
//
93
// ModuleRun is restarted if hook or chart is failed.
94
// After first Handle success, no onStartup and kubernetes.Synchronization tasks will run.
95
-func (s *Task) Handle(ctx context.Context) queue.TaskResult {
+func (s *Task) Handle(ctx context.Context) (res queue.TaskResult) { //nolint:nonamedreturns
96
defer trace.StartRegion(ctx, "ModuleRun").End()
97
98
- var res queue.TaskResult
99
-
100
taskLogLabels := s.shellTask.GetLogLabels()
101
s.logger = utils.EnrichLoggerWithLabels(s.logger, taskLogLabels)
102
0 commit comments