We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b639a34 commit ecdb6f5Copy full SHA for ecdb6f5
Sources/PostgresNIO/New/PSQLError.swift
@@ -54,6 +54,12 @@ public struct PSQLError: Error {
54
public static let listenFailed = Self.init(.listenFailed)
55
public static let unlistenFailed = Self.init(.unlistenFailed)
56
57
+ @available(*, deprecated, renamed: "clientClosesConnection")
58
+ public static let connectionQuiescing = Self.clientClosesConnection
59
+
60
+ @available(*, deprecated, message: "Use the more specific `serverClosedConnection` or `clientClosedConnection` instead")
61
+ public static let connectionClosed = Self.serverClosedConnection
62
63
public var description: String {
64
switch self.base {
65
case .sslUnsupported:
0 commit comments