From 0de37348dbfd0465798ca0b1700bfb9fdbdde656 Mon Sep 17 00:00:00 2001 From: pb Date: Wed, 30 Apr 2025 12:37:55 +0200 Subject: [PATCH] printing in schedules --- models/workflow_execution/workflow_scheduler.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/models/workflow_execution/workflow_scheduler.go b/models/workflow_execution/workflow_scheduler.go index 0f409d5..4bc6115 100644 --- a/models/workflow_execution/workflow_scheduler.go +++ b/models/workflow_execution/workflow_scheduler.go @@ -113,6 +113,8 @@ func (ws *WorkflowSchedule) Schedules(wfID string, request *tools.APIRequest) (* } ws.Workflow = wf for _, booking := range bookings { + fmt.Println("Trying to book on ") + fmt.Println(booking.DestPeerID) _, err := (&peer.Peer{}).LaunchPeerExecution(booking.DestPeerID, "", tools.BOOKING, tools.POST, booking.Serialize(booking), request.Caller) if err != nil {