Skip to content

Commit 68e40de

Browse files
committed
bugfix: properly handling non-410 ApiExcetion in the reflector
1 parent bfcaea2 commit 68e40de

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

util/src/main/java/io/kubernetes/client/informer/cache/ReflectorRunnable.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ public void run() {
160160
"ResourceVersion {} expired, will retry w/o resourceVersion at the next time",
161161
getRelistResourceVersion());
162162
isLastSyncResourceVersionUnavailable = true;
163+
} else {
164+
this.exceptionHandler.accept(apiTypeClass, e);
163165
}
164166
} catch (Throwable t) {
165167
this.exceptionHandler.accept(apiTypeClass, t);

0 commit comments

Comments
 (0)