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
Reset POOLS_HASH when reloading config to avoid duplications
Before, when configuration was reloaded, we checked whether a given pool
configuration was changed by adding it to a HashSet and checking whether it was
inserted or ignored. This behavior has a undesired effect when changing existing
pools, as the new one will be added, even though the old will still exist
in the HashSet.
With this change, the HashSet is always recreated with current configuration, leaving
intact the rest of the logic.
0 commit comments