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 e3611b0 commit ad6ba5dCopy full SHA for ad6ba5d
operator-framework/src/main/java/com/github/containersolutions/operator/EventDispatcher.java
@@ -111,6 +111,9 @@ private boolean markedForDeletion(R resource) {
111
public void onClose(KubernetesClientException e) {
112
if (e != null) {
113
log.error("Error: ", e);
114
+ // we will exit the application if there was a watching exception, because of the bug in fabric8 client
115
+ // see https://github.com/fabric8io/kubernetes-client/issues/1318
116
+ System.exit(1);
117
}
118
119
0 commit comments