Make WebsocketConfig public, so DABL can use it (#4446)

WebSocketService is already public. This does not mean that the interfaces
are stabilized.

CHANGELOG_BEGIN
CHANGELOG_END
This commit is contained in:
Leonid Shlyapnikov 2020-02-07 10:56:21 -05:00 committed by GitHub
parent 655e4b3b55
commit fcc2545a23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,8 @@ private[http] object JdbcConfig extends ConfigCompanion[JdbcConfig]("JdbcConfig"
s"""\"driver=$driver,url=$url,user=$user,password=$password,createSchema=$createSchema\""""
}
private[http] final case class WebsocketConfig(
// It is public for DABL
final case class WebsocketConfig(
maxDuration: FiniteDuration,
throttleElem: Int,
throttlePer: FiniteDuration,