We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5431289 commit 30dcf72Copy full SHA for 30dcf72
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/UpdateControl.java
@@ -47,11 +47,11 @@ public static <T extends CustomResource> UpdateControl<T> noUpdate() {
47
return new UpdateControl<>(null, false, false);
48
}
49
50
- public UpdateControl withReSchedule(long delay, TimeUnit timeUnit) {
+ public UpdateControl<T> withReSchedule(long delay, TimeUnit timeUnit) {
51
return withReSchedule(timeUnit.toMillis(delay));
52
53
54
- public UpdateControl withReSchedule(long delay) {
+ public UpdateControl<T> withReSchedule(long delay) {
55
this.reScheduleDelay = delay;
56
return this;
57
0 commit comments