From 8da138b1cc51559b13b9bd206f987480753fe9d1 Mon Sep 17 00:00:00 2001 From: Zach Rausnitz Date: Thu, 18 Jul 2024 14:38:28 -0700 Subject: [PATCH] Fix typo in connection request error message --- Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift b/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift index 0fe52ac..26228de 100644 --- a/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift +++ b/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift @@ -201,7 +201,7 @@ public final class EventLoopConnectionPool where Source: ConnectionPoolS return } logger.error(""" - Connection request (ID \(waiterId) timed out. This might indicate a connection deadlock in \ + Connection request (ID \(waiterId)) timed out. This might indicate a connection deadlock in \ your application. If you have long-running requests, consider increasing your connection timeout. """) promise.fail(ConnectionPoolTimeoutError.connectionRequestTimeout)