From e3fb50bf0c9c2756e95b4b70335feb2317f80fa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=84=9D=EB=B2=94?= Date: Tue, 17 Mar 2026 14:47:54 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Fix:=20grpc=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../infrastructure/grpc/cardset.grpc-controller.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cardset/infrastructure/grpc/cardset.grpc-controller.ts b/src/cardset/infrastructure/grpc/cardset.grpc-controller.ts index 039825a..3fa39dd 100644 --- a/src/cardset/infrastructure/grpc/cardset.grpc-controller.ts +++ b/src/cardset/infrastructure/grpc/cardset.grpc-controller.ts @@ -17,8 +17,8 @@ export class CardsetGrpcController { data: IsCardSetViewableRequest, ): Promise { const viewable = await this.cardsetUseCase.isCardSetViewable( - data.cardSetId, - data.userId, + Number(data.cardSetId), + Number(data.userId), ); return { viewable }; } @@ -28,8 +28,8 @@ export class CardsetGrpcController { data: GetCardSetsByIdsRequest, ): Promise { const cardsets = await this.cardsetUseCase.getCardSetsByIds( - data.cardSetIds, - data.userId, + data.cardSetIds.map(Number), + Number(data.userId), ); return { cardSets: cardsets.map((c) => ({ From d73d297185c39df8da857bcc71eb04949d9b74cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=84=9D=EB=B2=94?= Date: Tue, 17 Mar 2026 14:50:32 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Fix:=20=EA=B2=BD=EB=A1=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../infrastructure/gateway/collaboration.gateway.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collaboration/infrastructure/gateway/collaboration.gateway.ts b/src/collaboration/infrastructure/gateway/collaboration.gateway.ts index 7668613..eb33d1e 100644 --- a/src/collaboration/infrastructure/gateway/collaboration.gateway.ts +++ b/src/collaboration/infrastructure/gateway/collaboration.gateway.ts @@ -19,7 +19,7 @@ import { CollaborationUseCase } from '../../application/collaboration.use-case'; @UseGuards(WsAuthGuard) @WebSocketGateway({ cors: { origin: '*' }, - namespace: '/v1/card-sets/ws', + path: '/v1/card-sets/ws', pingTimeout: 60000, pingInterval: 25000, })