Skip to content

Commit

Permalink
Minor fix for Scala 2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
debasishg committed Oct 29, 2021
1 parent 31be53b commit 9321ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/com/redis/RedisClient.scala
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ abstract class RedisCommand(batch: Mode) extends Redis(batch)

class RedisClient(override val host: String, override val port: Int,
override val database: Int = 0, override val secret: Option[Any] = None, override val timeout : Int = 0,
override val sslContext: Option[SSLContext] = None, val batch: Mode = RedisClient.SINGLE)
override val sslContext: Option[SSLContext] = None, val batch: RedisClient.Mode = RedisClient.SINGLE)
extends RedisCommand(batch) with PubSub {

def this() = this("localhost", 6379)
Expand Down

0 comments on commit 9321ce9

Please sign in to comment.