Skip to content

Commit 9e41f50

Browse files
committed
wip
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 17d40cc commit 9e41f50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/informer/DefaultTemporalPrimaryToSecondaryIndex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public synchronized Set<ResourceID> getSecondaryResources(ResourceID primary) {
5353
if (resourceIDs == null) {
5454
return Collections.emptySet();
5555
} else {
56-
return Collections.unmodifiableSet(resourceIDs);
56+
return new HashSet<>(resourceIDs);
5757
}
5858
}
5959
}

0 commit comments

Comments
 (0)