Skip to content

Commit 2d7c490

Browse files
committed
wip
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
1 parent 32b16f5 commit 2d7c490

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,7 @@ <R extends HasMetadata> R resourcePatch(
975975
if (matches) {
976976
if (log.isDebugEnabled()) {
977977
log.debug(
978-
"Resource match resource id: {}, type: {}, version: {}",
978+
"Resource match resource id: {}, type: {}, version: {}",
979979
ResourceID.fromResource(targetBaseResource),
980980
targetBaseResource.getClass().getSimpleName(),
981981
targetBaseResource.getMetadata().getResourceVersion());

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ public void changeNamespaces(Set<String> namespaces) {
101101
public R eventFilteringUpdateAndCacheResource(R resourceToUpdate, UnaryOperator<R> updateMethod) {
102102

103103
ResourceID id = ResourceID.fromResource(resourceToUpdate);
104-
log.debug("Starting event filtering and caching update for id={}", id);
105-
R updatedResource = null;
104+
log.debug("Starting event filtering and caching update for id: {}", id);
105+
R updatedResource;
106106
Set<ResourceID> relatedPrimaryIds = null;
107107
try {
108108
temporaryResourceCache.startEventFilteringModify(id);

0 commit comments

Comments
 (0)