We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6106aca commit bdb320eCopy full SHA for bdb320e
1 file changed
packages/server/internal/api/rflowv2/rflowv2_exec.go
@@ -308,10 +308,12 @@ func (s *FlowServiceV2RPC) executeFlow(
308
}
309
310
311
+ // Include timestamp in execution name for easy identification
312
+ executionName := fmt.Sprintf("%s - %s", status.Name, time.Now().Format("2006-01-02 15:04"))
313
model := mflow.NodeExecution{
314
ID: execID,
315
NodeID: status.NodeID,
- Name: status.Name,
316
+ Name: executionName,
317
State: status.State,
318
ResponseID: status.AuxiliaryID,
319
0 commit comments