Skip to content

Commit

Permalink
Merge pull request #30 from nebula-contrib/fix-config-default-value
Browse files Browse the repository at this point in the history
Fix default value
  • Loading branch information
jxnu-liguobin committed Dec 25, 2023
2 parents bb91348 + 4ccc48b commit e428ea9
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 e428ea9

Please sign in to comment.