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 1a3a046 commit 120b703Copy full SHA for 120b703
operator-framework/src/main/java/com/github/containersolutions/operator/processing/EventConsumer.java
@@ -1,7 +1,5 @@
1
package com.github.containersolutions.operator.processing;
2
3
-import io.fabric8.kubernetes.client.CustomResource;
4
-import io.fabric8.kubernetes.client.Watcher;
5
import org.slf4j.Logger;
6
import org.slf4j.LoggerFactory;
7
@@ -34,8 +32,6 @@ public void run() {
34
32
35
33
@SuppressWarnings("unchecked")
36
private boolean processEvent() {
37
- Watcher.Action action = event.getAction();
38
- CustomResource resource = event.getResource();
39
try {
40
eventDispatcher.handleEvent(event);
41
} catch (RuntimeException e) {
0 commit comments