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 c627326 commit 256fb86Copy full SHA for 256fb86
connection/connection.ts
@@ -434,6 +434,8 @@ export class Connection {
434
}
435
case INCOMING_AUTHENTICATION_MESSAGES.PARAMETER_STATUS:
436
break;
437
+ case INCOMING_AUTHENTICATION_MESSAGES.NOTICE:
438
+ break;
439
default:
440
throw new Error(`Unknown response for startup: ${message.type}`);
441
connection/message_code.ts
@@ -24,6 +24,7 @@ export const INCOMING_AUTHENTICATION_MESSAGES = {
24
BACKEND_KEY: "K",
25
PARAMETER_STATUS: "S",
26
READY: "Z",
27
+ NOTICE: "N",
28
} as const;
29
30
export const INCOMING_TLS_MESSAGES = {
0 commit comments