File tree 1 file changed +3
-4
lines changed
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -276,8 +276,7 @@ private void reScheduleExecutionIfInstructed(
276
276
.getReScheduleDelay ()
277
277
.ifPresentOrElse (delay -> {
278
278
var resourceID = ResourceID .fromResource (customResource );
279
- log .debug ("ReScheduling event for resource: {} with delay: {}" ,
280
- resourceID , delay );
279
+ log .debug ("Rescheduling event for resource: {} with delay: {}" , resourceID , delay );
281
280
retryEventSource ().scheduleOnce (resourceID , delay );
282
281
}, () -> scheduleExecutionForMaxReconciliationInterval (customResource ));
283
282
}
@@ -288,8 +287,8 @@ private void scheduleExecutionForMaxReconciliationInterval(R customResource) {
288
287
.ifPresent (m -> {
289
288
var resourceID = ResourceID .fromResource (customResource );
290
289
var delay = m .toMillis ();
291
- log .debug ("ReScheduling event for resource because for max reconciliation interval : " +
292
- "{} with delay: {}" ,
290
+ log .debug ("Rescheduling event for max reconciliation interval for resource: {} : " +
291
+ "with delay: {}" ,
293
292
resourceID , delay );
294
293
retryEventSource ().scheduleOnce (resourceID , delay );
295
294
});
You can’t perform that action at this time.
0 commit comments