=htt #17353 Reduce verbosity of logging on pool shutdown

This commit is contained in:
Jesse Haber-Kucharsky 2015-10-09 10:06:14 -04:00
parent 9293c4b312
commit 7ae5307b48

View file

@ -419,7 +419,7 @@ class HttpExt(config: Config)(implicit system: ActorSystem) extends akka.actor.E
import scala.collection.JavaConverters._
val gateways = hostPoolCache.values().asScala
system.log.info("Initiating orderly shutdown of all active host connections pools...")
system.log.debug("Initiating orderly shutdown of all active host connections pools...")
Future.sequence(gateways.map(_.flatMap(_.shutdown()))).map(_ ())
}