Skip to content

Commit

Permalink
fix SentinelMonitoredRedisBlockingClient : use Blocking commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerian Barbot committed Sep 12, 2013
1 parent c274d36 commit 359767c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/redis/Redis.scala
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ case class SentinelMonitoredRedisClient(
case class SentinelMonitoredRedisBlockingClient(sentinelHost: String = "localhost",
sentinelPort: Int = 26379,
master: String)
(implicit system: ActorSystem) extends SentinelMonitoredRedisClientLike(system) with RedisCommands with Transactions {
(implicit system: ActorSystem) extends SentinelMonitoredRedisClientLike(system) with BLists {
val redisClient: RedisBlockingClient = withMasterAddr((ip, port) => {
new RedisBlockingClient(ip, port, "SMRedisClient")
})
Expand Down

0 comments on commit 359767c

Please sign in to comment.