Skip to content

Commit

Permalink
Don't send PoisonPill to ChromeServer internal actor on disconnect
Browse files Browse the repository at this point in the history
Doing so results in a dead-letter log message when DevToolsHandler
reacts on the disconnect call.
  • Loading branch information
provegard committed Oct 22, 2017
1 parent 870f7f5 commit 2530692
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ class ChromeServerFactory(domainFactory: DomainFactory)(implicit system: ActorSy
override def disconnect() = {
if (isConnected.compareAndSet(true, false)) {
handler.tell(DevToolsDisconnected, innerActor)
innerActor ! PoisonPill
subject.onComplete()
}
}
Expand Down

0 comments on commit 2530692

Please sign in to comment.