fix: #672 Empty execution tracking ID in InternalLogEntry

This commit is contained in:
jamesread 2025-10-27 15:42:13 +00:00
parent a551589840
commit 2ea35697d0
1 changed files with 3 additions and 0 deletions

View File

@ -286,6 +286,9 @@ func (e *Executor) ExecRequest(req *ExecutionRequest) (*sync.WaitGroup, string)
req.TrackingID = uuid.NewString() req.TrackingID = uuid.NewString()
} }
// Update the log entry with the final tracking ID
req.logEntry.ExecutionTrackingID = req.TrackingID
log.Tracef("executor.ExecRequest(): %v", req) log.Tracef("executor.ExecRequest(): %v", req)
e.SetLog(req.TrackingID, req.logEntry) e.SetLog(req.TrackingID, req.logEntry)