Skip to content

Commit fdcfb17

Browse files
committed
try to install redis
1 parent cf68dda commit fdcfb17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Sources/RediStack/ConnectionPool/RedisConnectionPool+Configuration.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ extension RedisConnectionPool {
138138
connectionRetryTimeout ?? .milliseconds(10) // always default to a baseline 10ms
139139
)
140140
self.onUnexpectedConnectionClose = onUnexpectedConnectionClose
141-
self.poolDefaultLogger = poolDefaultLogger ?? .redisBaseConnectionLoggerPool
141+
self.poolDefaultLogger = poolDefaultLogger ?? .redisBaseConnectionLoggerPoolLogger
142142
}
143143
}
144144
}

Sources/RediStack/_Deprecations.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ extension RedisConnectionPool {
107107
connectionPassword: String? = nil, // config
108108
connectionLogger: Logger = .redisBaseConnectionLogger, // config
109109
connectionTCPClient: ClientBootstrap? = nil,
110-
poolLogger: Logger = .redisBaseConnectionLoggerPool,
110+
poolLogger: Logger = .redisBaseConnectionLoggerPoolLogger,
111111
connectionBackoffFactor: Float32 = 2,
112112
initialConnectionBackoffDelay: TimeAmount = .milliseconds(100),
113113
connectionRetryTimeout: TimeAmount? = .seconds(60)

Tests/RediStackTests/ConnectionPoolTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ final class ConnectionPoolTests: XCTestCase {
4747
minimumConnectionCount: minimumConnectionCount,
4848
leaky: leaky,
4949
loop: self.server.loop,
50-
backgroundLogger: .redisBaseConnectionLoggerPool
50+
backgroundLogger: .redisBaseConnectionLoggerPoolLogger
5151
) { loop in
5252
loop.makeSucceededFuture(self.createAConnection())
5353
}

0 commit comments

Comments
 (0)