Skip to content

Commit

Permalink
Fix default value
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnu-liguobin committed Dec 25, 2023
1 parent d1e9db0 commit 4ccc48b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scala/zio/nebula/NebulaConfig.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ final case class NebulaSessionPoolConfig(
address: List[NebulaHostAddress],
auth: NebulaAuth,
spaceName: String,
maxSessionSize: Int = 1,
minSessionSize: Int = 10,
maxSessionSize: Int = 10,
minSessionSize: Int = 1,
waitTimeMills: Int = 0,
retryTimes: Int = 3,
timeoutMills: Int = 0,
Expand Down

0 comments on commit 4ccc48b

Please sign in to comment.