You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return queue.enqueue([.sslSupportRequest(PostgreSQLSSLSupportRequest())]){ message in
135
+
guard case .sslSupportResponse(let response)= message else{
136
+
throwPostgreSQLError(identifier:"SSL support check", reason:"Unsupported message encountered during SSL support check: \(message).", source:.capture())
137
+
}
138
+
guard response ==.supported else{
139
+
throwPostgreSQLError(identifier:"SSL support check", reason:"tlsConfiguration given in PostgresSQLConfiguration, but SSL connection not supported by PostgreSQL server", source:.capture())
0 commit comments