You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While migrating a project that uses many watchers for different object types to shared informers, I am facing the following error after informers get started:
2021-04-09 08:48:43 WARNING io.fabric8.kubernetes.client.informers.cache.Controller run Reflector list-watching job exiting because the thread-pool is shutting down
java.util.concurrent.RejectedExecutionException: Error while starting ReflectorRunnable watch
at io.fabric8.kubernetes.client.informers.cache.Reflector.listAndWatch(Reflector.java:87)
at io.fabric8.kubernetes.client.informers.cache.Controller.run(Controller.java:109)
at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: java.lang.NullPointerException
I tried to reuse the sharedInformer or have different ones, but in both cases, I see this exception happening around 60 times for a total of 120 created informers.
The text was updated successfully, but these errors were encountered:
While migrating a project that uses many watchers for different object types to shared informers, I am facing the following error after informers get started:
I tried to reuse the
sharedInformer
or have different ones, but in both cases, I see this exception happening around 60 times for a total of 120 created informers.The text was updated successfully, but these errors were encountered: