Remove payload debug

This commit is contained in:
Achim Rohn
2026-04-08 17:14:32 +02:00
parent 8a3d041e3f
commit 1d730a4c5d
+1 -1
View File
@@ -54,7 +54,7 @@ func (s *Step) AddNextStep(step *Step) {
const workflowIdParam = "workflowId" const workflowIdParam = "workflowId"
func (s *Step) Execute(ctx context.Context, payload map[string]any) error { func (s *Step) Execute(ctx context.Context, payload map[string]any) error {
ersteller.Debug("Executing step ", s.Name, "payload", payload) ersteller.Debug("Executing step ", s.Name)
_, err := s.Queue.Enqueue(ctx, payload, s.MaxRetries, -1, queue.WithWorkflowId(payload[workflowIdParam].(string))) _, err := s.Queue.Enqueue(ctx, payload, s.MaxRetries, -1, queue.WithWorkflowId(payload[workflowIdParam].(string)))
if err != nil { if err != nil {
return err return err