Skip to content

Commit

Permalink
using snapshot josdk and small decorational fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Mészáros <[email protected]>
  • Loading branch information
csviri committed Feb 21, 2024
1 parent aa8d890 commit e4b7bba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<josdk.version>4.8.0</josdk.version>
<josdk.version>4.8.1-SNAPSHOT</josdk.version>
<slf4j.version>1.7.36</slf4j.version>
<junit.version>5.10.2</junit.version>
<log4j.version>2.22.1</log4j.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ public Set<ResourceID> toPrimaryResourceIDs(GenericKubernetesResource resource)
return res;
}

public void addResourceIDMapping(Collection<ResourceID> resourceIDs, ResourceID workFlowId) {
public void addResourceIDMapping(Collection<ResourceID> resourceIDs, ResourceID glueID) {
Set<ResourceID> glueIDSet = new HashSet<>();
glueIDSet.add(workFlowId);
glueIDSet.add(glueID);
resourceIDs
.forEach(resourceID -> secondaryToPrimaryMap.merge(resourceID, glueIDSet, (s1, s2) -> {
s1.addAll(s2);
Expand Down

0 comments on commit e4b7bba

Please sign in to comment.