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

   Hi @mdedetrich,
   
   @pjfanning and I just tested the 1.1 milestone release with 
**[playframework](https://github.com/playframework/playframework/pull/12662)**. 
We followed the migration guide and explicitly defined the supervision strategy 
when using the `splitWhen` function like so:
   
   ```scala
   .splitWhen(_.isLeft)
   
.withAttributes(ActorAttributes.supervisionStrategy(Supervision.resumingDecider))
   .prefixAndTail(1)
   ```
   
   But when using the deprecated `SubstreamCancelStrategy` it works fine:
   
   ```scala
   .splitWhen(SubstreamCancelStrategy.drain)(_.isLeft)
   ```
   
   Is there something we're missing ?


-- 
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