Skip to content

Commit

Permalink
Merge pull request #8373 from mandy-chessell/oak2024
Browse files Browse the repository at this point in the history
Improve the uniqueness of EngineAction qualifiedNames
  • Loading branch information
mandy-chessell authored Sep 4, 2024
2 parents 57a4747 + 3c01619 commit 5b8ab96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ public String initiateGovernanceActionProcess(String userId,
String processInstanceQualifiedName = repositoryHelper.getStringProperty(serviceName,
OpenMetadataProperty.QUALIFIED_NAME.name,
governanceActionProcessEntity.getProperties(),
methodName) + "@" + processInstanceStartTime;
methodName) + "@" + processInstanceStartTime.getTime() + ":" + UUID.randomUUID();
String processInstanceName = repositoryHelper.getStringProperty(serviceName,
OpenMetadataProperty.NAME.name,
governanceActionProcessEntity.getProperties(),
Expand Down

0 comments on commit 5b8ab96

Please sign in to comment.