Skip to content

Commit 2ace6d3

Browse files
committed
Fix of integration test
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
1 parent f166d8e commit 2ace6d3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/PrimaryUpdateAndCacheUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ private static <P extends HasMetadata> void sanityChecks(P primary, Context<P> c
225225
.parseResourceVersionsForEventFilteringAndCaching()) {
226226
throw new OperatorException(
227227
"For internal primary resource caching 'parseResourceVersionsForEventFilteringAndCaching'"
228-
+ " must to be allowed.");
228+
+ " must be allowed.");
229229
}
230230
}
231231
}

operator-framework/src/test/java/io/javaoperatorsdk/operator/baseapi/statuscache/internal/StatusPatchCacheIT.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public class StatusPatchCacheIT {
1818
@RegisterExtension
1919
LocallyRunOperatorExtension extension =
2020
LocallyRunOperatorExtension.builder()
21+
.withConfigurationService(o->o.withParseResourceVersions(true))
2122
.withReconciler(StatusPatchCacheReconciler.class)
2223
.build();
2324

0 commit comments

Comments
 (0)