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
Calling ScheduledDataLoaderRegistry.newScheduledRegistry() creates a new ScheduledExecutorService on every call, regardless of whether one is passed to the builder or not.
This is due to the builder field being initialized with a default; it might be better to initialize the field to null and then only create a new ScheduledExecutorService if a custom one is not passed in.
The text was updated successfully, but these errors were encountered:
Calling ScheduledDataLoaderRegistry.newScheduledRegistry() creates a new ScheduledExecutorService on every call, regardless of whether one is passed to the builder or not.
To reproduce:
This is due to the builder field being initialized with a default; it might be better to initialize the field to null and then only create a new ScheduledExecutorService if a custom one is not passed in.
The text was updated successfully, but these errors were encountered: