gwak commented on issue #1205:
URL: https://github.com/apache/pekko/issues/1205#issuecomment-2217489299

   @mdedetrich You were right, @pjfanning tried your suggestion in 
https://github.com/playframework/playframework/pull/12794 and tests are 
passing. Thanks!
   
   So the final flow is something like :
   
   ```scala
   ...
   .splitWhen(_.isLeft)
   .prefixAndTail(1)
   .map { /*...snip...*/ }
   .concatSubstreams
   
.withAttributes(ActorAttributes.supervisionStrategy(Supervision.resumingDecider))
   ```
   
   And not 
   
   ```scala
   ...
   .splitWhen(_.isLeft)
   
.withAttributes(ActorAttributes.supervisionStrategy(Supervision.resumingDecider))
   .prefixAndTail(1)
   .map { /*...snip...*/ }
   .concatSubstreams
   ```


-- 
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: notifications-unsubscr...@pekko.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org
For additional commands, e-mail: notifications-h...@pekko.apache.org

Reply via email to