We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7bf0e2 commit 8ddd072Copy full SHA for 8ddd072
1 file changed
otoroshi/app/statefulclients/pg.scala
@@ -18,7 +18,7 @@ case class PgStatefulClientConfig(uri: String, poolSize: Int = 10) extends State
18
19
private val open = new AtomicBoolean(false)
20
21
- override def start(): Pool = {
+ override def start(env: otoroshi.env.Env): Pool = {
22
val connectOptions = PgConnectOptions.fromUri(uri)
23
val poolOptions = new PoolOptions().setMaxSize(poolSize)
24
val pool = Pool.pool(connectOptions, poolOptions)
0 commit comments