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 428e5c9 + 3eaa281 commit 11986f2Copy full SHA for 11986f2
util/src/main/java/io/kubernetes/client/informer/cache/Controller.java
@@ -87,7 +87,7 @@ public Controller(
87
// starts one daemon thread for resync
88
this.resyncExecutor =
89
Executors.newSingleThreadScheduledExecutor(
90
- Threads.threadFactory("controller-reflector-" + apiTypeClass.getName() + "-%d"));
+ Threads.threadFactory("controller-resync-" + apiTypeClass.getName() + "-%d"));
91
}
92
93
public Controller(
@@ -139,6 +139,7 @@ public void stop() {
139
140
141
reflectExecutor.shutdown();
142
+ resyncExecutor.shutdown();
143
144
145
/** returns true if the queue has been resycned */
0 commit comments