We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c2cebe commit 9be7e1bCopy full SHA for 9be7e1b
nodejs/src/tmq/config.ts
@@ -89,7 +89,7 @@ export class TmqConfig {
89
this.dsn.addresses,
90
this.dsn.database,
91
this.dsn.params
92
- )
+ );
93
}
94
95
nodejs/src/tmq/wsTmq.ts
@@ -77,7 +77,7 @@ export class WsConsumer {
77
if (wsConfig.size == 0 || !wsConfig.get(TMQConstants.WS_URL)) {
78
throw new WebSocketInterfaceError(
79
ErrorCode.ERR_INVALID_URL,
80
- "invalid url, password or username needed."
+ "Invalid DSN"
81
);
82
83
const wsConsumer = new WsConsumer(wsConfig);
0 commit comments