Skip to content

Commit 4c3b795

Browse files
committed
fix: made execution identifier a uuid
1 parent af5cdff commit 4c3b795

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/services/namespaces/projects/flows/trigger_execution_service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def execute
1818
return ServiceResponse.error(message: 'Missing permission', error_code: :missing_permission)
1919
end
2020

21-
execution_identifier = "SGT-TE-#{current_authentication.user.id}-#{flow.id}-#{SecureRandom.hex}"
21+
execution_identifier = SecureRandom.uuid
2222

2323
execution_request = Tucana::Sagittarius::TestExecutionRequest.new(
2424
flow_id: flow.id,

0 commit comments

Comments
 (0)