Why does this akka-http route test never complete successfully?
问题 I've a simple route and some tests that success individually, but collectively fail with timeout. Any idea why? val route = (requestHandler: ActorRef @@ Web) => { get { pathPrefix("apps") { pathEndOrSingleSlash { completeWith(implicitly[ToEntityMarshaller[List[String]]]) { callback => requestHandler ! GetAppsRequest(callback) } } ~ path("stats") { completeWith(implicitly[ToEntityMarshaller[List[Stats]]]) { callback => requestHandler ! GetStatsRequest(callback) } } } ~ path("apps" / Segment /