Skip to content

Commit

Permalink
fix: Default value for maxOrphanRequests in Cassandra driver (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubjanecek authored Oct 20, 2020
1 parent fc1ac7c commit adc2909
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ final case class ConnectionConfig(

object ConnectionConfig {
val Default: ConnectionConfig =
ConnectionConfig(InitQueryTimeout, InitQueryTimeout, PoolConfig.Default, PoolConfig.Default, 1024, 24576, true)
ConnectionConfig(InitQueryTimeout, InitQueryTimeout, PoolConfig.Default, PoolConfig.Default, 1024, 256, true)
}

/** The driver maintains a connection pool to each node, according to the distance assigned to it
Expand Down

0 comments on commit adc2909

Please sign in to comment.