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
2020-12-22 22:15:30,457 ERROR akka.actor.ActorCell - Supervisor ResumeSupervisor saw failure: actor name [mempool.space] is not unique!akka.actor.InvalidActorNameException: actor name [mempool.space] is not unique!
2020-12-23 04:47:24,627 ERROR akka.actor.ActorCell - Supervisor ResumeSupervisor saw failure: actor name [blockcypher] is not unique!akka.actor.InvalidActorNameException: actor name [blockcypher] is not unique!
The text was updated successfully, but these errors were encountered:
Interesting, that can probably happen when multiple blocks are found in a small time window, and the previous actors haven't been fully stopped yet. We can use unique name by appending a random UUID.
Actor names cannot conflict.
Even though blockchain watchdog actors stop themselves after fetching block
data, when blocks are found in a short interval, we may end up with multiple
actors of the same type simultaneously alive, so we need them to have
unique names.
The blockcount isn't sufficient to make their names unique because forks
can happen.
Fixes#1665
Actor names cannot conflict.
Even though blockchain watchdog actors stop themselves after fetching block
data, when blocks are found in a short interval, we may end up with multiple
actors of the same type simultaneously alive, so we need them to have
unique names.
The blockcount isn't sufficient to make their names unique because forks
can happen.
Fixes#1665
There seem to be an issue related to supervision:
The text was updated successfully, but these errors were encountered: