From 99589f666a4f7461cd0a3cb2cb8f77d8e72160b9 Mon Sep 17 00:00:00 2001 From: Developer Date: Tue, 2 Dec 2025 10:48:33 -0800 Subject: [PATCH] =?UTF-8?q?fix(authorization-service):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E7=AB=AF=E5=8F=A3=E9=85=8D=E7=BD=AE=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=80=BC=E4=B8=BA=203009?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/services/authorization-service/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/authorization-service/src/main.ts b/backend/services/authorization-service/src/main.ts index cd3deb5b..dd9a140f 100644 --- a/backend/services/authorization-service/src/main.ts +++ b/backend/services/authorization-service/src/main.ts @@ -47,7 +47,7 @@ async function bootstrap() { const document = SwaggerModule.createDocument(app, config) SwaggerModule.setup('api/docs', app, document) - const port = process.env.APP_PORT || 3002 + const port = parseInt(process.env.APP_PORT || '3009', 10) await app.listen(port) logger.log(`Authorization Service is running on port ${port}`)