Skip to content

Commit

Permalink
try to install redis
Browse files Browse the repository at this point in the history
  • Loading branch information
ktoso committed Nov 8, 2024
1 parent fdcfb17 commit 7652951
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ extension RedisConnectionPool {
connectionRetryTimeout ?? .milliseconds(10) // always default to a baseline 10ms
)
self.onUnexpectedConnectionClose = onUnexpectedConnectionClose
self.poolDefaultLogger = poolDefaultLogger ?? .redisBaseConnectionLoggerPoolLogger
self.poolDefaultLogger = poolDefaultLogger ?? .redisBaseConnectionPoolLogger
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/RediStack/_Deprecations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ extension RedisConnectionPool {
connectionPassword: String? = nil, // config
connectionLogger: Logger = .redisBaseConnectionLogger, // config
connectionTCPClient: ClientBootstrap? = nil,
poolLogger: Logger = .redisBaseConnectionLoggerPoolLogger,
poolLogger: Logger = .redisBaseConnectionPoolLogger,
connectionBackoffFactor: Float32 = 2,
initialConnectionBackoffDelay: TimeAmount = .milliseconds(100),
connectionRetryTimeout: TimeAmount? = .seconds(60)
Expand Down
2 changes: 1 addition & 1 deletion Tests/RediStackTests/ConnectionPoolTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ final class ConnectionPoolTests: XCTestCase {
minimumConnectionCount: minimumConnectionCount,
leaky: leaky,
loop: self.server.loop,
backgroundLogger: .redisBaseConnectionLoggerPoolLogger
backgroundLogger: .redisBaseConnectionPoolLogger
) { loop in
loop.makeSucceededFuture(self.createAConnection())
}
Expand Down

0 comments on commit 7652951

Please sign in to comment.