Additional tests for async boundaries and GroupBy #24676

This commit is contained in:
Johan Andrén 2018-05-03 13:24:51 +02:00 committed by GitHub
parent d08f31bcdb
commit dfd8d8aa81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 83 additions and 28 deletions

View file

@ -743,7 +743,11 @@ private final case class SavedIslandData(islandGlobalOffset: Int, lastVisitedOff
case OptionVal.Some(n) n
case OptionVal.None islandName
}
materializer.actorOf(props, actorName)
val ref = materializer.actorOf(props, actorName)
if (PhasedFusingActorMaterializer.Debug) {
println(s"Spawned actor [$ref] with shell: $shell")
}
}
}