Ignore possible state change in start (#29069)
This commit is contained in:
parent
11816df236
commit
ab89e15438
1 changed files with 4 additions and 0 deletions
|
|
@ -626,6 +626,10 @@ class ClusterSingletonManager(singletonProps: Props, terminationMessage: Any, se
|
|||
goto(BecomingOldest).using(BecomingOldestData(oldest.filterNot(_ == cluster.selfUniqueAddress)))
|
||||
else
|
||||
goto(Younger).using(YoungerData(oldest.filterNot(_ == cluster.selfUniqueAddress)))
|
||||
|
||||
case Event(HandOverToMe, _) =>
|
||||
// nothing to hand over in start
|
||||
stay()
|
||||
}
|
||||
|
||||
when(Younger) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue