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.
2 parents a3c743e + 1ae9bdd commit 9131f07Copy full SHA for 9131f07
extended/src/main/java/io/kubernetes/client/extended/controller/DefaultController.java
@@ -105,7 +105,11 @@ public void run() {
105
workerThreadPool.scheduleWithFixedDelay(
106
() -> {
107
log.debug("Starting controller {} worker {}..", this.name, workerIndex);
108
- this.worker();
+ try {
109
+ this.worker();
110
+ } catch (Throwable t) {
111
+ log.error("Unexpected controller loop abortion", t);
112
+ }
113
latch.countDown();
114
log.debug("Exiting controller {} worker {}..", this.name, workerIndex);
115
},
0 commit comments