Fix log singleton message #26329

This commit is contained in:
Arnaud Burlet 2019-02-06 09:05:48 +01:00 committed by Johan Andrén
parent 53a6614444
commit 66a2074a8b

View file

@ -805,7 +805,7 @@ class ClusterSingletonManager(
}
def gotoStopping(singleton: ActorRef): State = {
logInfo("Singleton manager starting singleton actor [{}]", singleton.path)
logInfo("Singleton manager stopping singleton actor [{}]", singleton.path)
singleton ! terminationMessage
goto(Stopping) using StoppingData(singleton)
}