You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am writing a small library that uses the akka-http host connection pool client to interact with an external system.
For this library, I don't want to use the default akka.http.host-connection-pool configuration but a very specific one. This to ensure that other usage of Http().cachedHostConnectionPool(...) in the final application do not use the same pool configuration as the library.
I am writing a small library that uses the akka-http host connection pool client to interact with an external system.
For this library, I don't want to use the default
akka.http.host-connection-pool
configuration but a very specific one. This to ensure that other usage ofHttp().cachedHostConnectionPool(...)
in the final application do not use the same pool configuration as the library.To do this, I've done the following:
This seems to be the easiest way to go, because it allows using the default settings and only overwrite the interesting values.
However,
ConnectionPoolSettings
does not provide a modifier forminConnections
. I suppose this has just been forgotten.The text was updated successfully, but these errors were encountered: