add missing have for past tense

This commit is contained in:
Konrad `ktoso` Malawski 2018-05-23 01:39:52 +09:00 committed by GitHub
parent 8736d2a407
commit 6b204ff121
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,7 @@ class DeadLetterListener extends Actor {
val doneMsg = if (done) ", no more dead letters will be logged" else ""
eventStream.publish(Info(rcp.path.toString, rcp.getClass,
s"Message [${message.getClass.getName}] $origin to $rcp was not delivered. [$count] dead letters encountered$doneMsg. " +
s"If this is not an expected behavior, then [$rcp] may terminated unexpectedly, " +
s"If this is not an expected behavior, then [$rcp] may have terminated unexpectedly, " +
"This logging can be turned off or adjusted with configuration settings 'akka.log-dead-letters' " +
"and 'akka.log-dead-letters-during-shutdown'."))
if (done) context.stop(self)