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 7652951 commit eb5aa28
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tests/RediStackTests/ConnectionPoolTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ final class ConnectionPoolTests: XCTestCase {
minimumConnectionCount: minimumConnectionCount,
leaky: leaky,
loop: self.server.loop,
backgroundLogger: .redisBaseConnectionPool,
backgroundLogger: .redisBaseConnectionPoolLogger,
connectionFactory: connectionFactory
)
}
Expand Down Expand Up @@ -838,18 +838,18 @@ extension ConnectionPoolTests {
// MARK: ConnectionPool context erasing overloads

extension ConnectionPool {
func activate() { self.activate(logger: .redisBaseConnectionPool) }
func activate() { self.activate(logger: .redisBaseConnectionPoolLogger) }

func leaseConnection(deadline: NIODeadline) -> EventLoopFuture<RedisConnection> {
self.leaseConnection(deadline: deadline, logger: .redisBaseConnectionPool)
self.leaseConnection(deadline: deadline, logger: .redisBaseConnectionPoolLogger)
}

func returnConnection(_ connection: RedisConnection) {
self.returnConnection(connection, logger: .redisBaseConnectionPool)
self.returnConnection(connection, logger: .redisBaseConnectionPoolLogger)
}

func close(promise: EventLoopPromise<Void>? = nil) {
self.close(promise: promise, logger: .redisBaseConnectionPool)
self.close(promise: promise, logger: .redisBaseConnectionPoolLogger)
}
}

Expand Down

0 comments on commit eb5aa28

Please sign in to comment.