Skip to content
Snippets Groups Projects

ci: issuer doesn't see any new connections in GET /connections or GET /connections/:id

@@ -39,7 +39,7 @@ export class ConsumerService extends NatsBaseService {
return this.jsClient.consumers.get(stream, consumerConfig.name);
} catch (error) {
if (error instanceof NatsError && error.code === "409") {
this.logger.log("Stream already exists");
this.logger.log("Consumer already exists");
return this.jsClient.consumers.get(stream, consumerConfig.name);
}
Loading