He-Pin opened a new pull request, #3040: URL: https://github.com/apache/pekko/pull/3040
### Motivation The warning message logged when `PoisonPill` or `Kill` is sent to a `StageActor` was missing a space between the period and the next sentence, resulting in: ``` "...not a real Actor.Use a custom message type to communicate with it instead." ``` ### Modification Add the missing space after the period in the warning message in `GraphStage.scala`, and after the comma in the corresponding test regex in `StageActorRefSpec.scala`. ### Result Warning message reads correctly: ``` "...not a real Actor. Use a custom message type to communicate with it instead." ``` ### Tests - `sbt "stream-tests / Test / testOnly org.apache.pekko.stream.scaladsl.StageActorRefSpec"` — 8/8 ### References None - minor formatting fix -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
