From b8399415428ea50e3deafdd3477073b43882cb17 Mon Sep 17 00:00:00 2001 From: Vikram Venkataranan <14256527+viktree@users.noreply.github.com> Date: Thu, 29 Feb 2024 16:01:25 -0500 Subject: [PATCH] remove comments --- src/microservice/gcloud-pub-sub.server.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/microservice/gcloud-pub-sub.server.ts b/src/microservice/gcloud-pub-sub.server.ts index 513cf8f..a0cc265 100644 --- a/src/microservice/gcloud-pub-sub.server.ts +++ b/src/microservice/gcloud-pub-sub.server.ts @@ -3,11 +3,10 @@ import { Server, CustomTransportStrategy } from '@nestjs/microservices' import { MESSAGE, ERROR, PUB_SUB_DEFAULT_RETRY_CODES } from '../helpers/constants' import { GCloudPubSubServerOptions } from '../interfaces/gcloud-pub-sub.interface' -/* istanbul ignore next */ const RETRY_INTERVAL = 5000 -export class GCloudPubSubServer /* istanbul ignore next */ +export class GCloudPubSubServer extends Server implements CustomTransportStrategy {