From 66fc3c5b355487d20266dbc88197e0d4b153331f Mon Sep 17 00:00:00 2001 From: pb Date: Tue, 27 May 2025 11:34:44 +0200 Subject: [PATCH] added the passing of the request.Caller's URL to the deep copy --- models/workflow_execution/workflow_scheduler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/models/workflow_execution/workflow_scheduler.go b/models/workflow_execution/workflow_scheduler.go index 7206d0f..087086f 100644 --- a/models/workflow_execution/workflow_scheduler.go +++ b/models/workflow_execution/workflow_scheduler.go @@ -112,6 +112,7 @@ func getBooking(l zerolog.Logger, b *booking.Booking, request *tools.APIRequest, errCh <- err return } + c.URLS = request.Caller.URLS m.Unlock() // Delock bl := l.With().Str("booking", b.UUID).Logger()