修复内部服务 ip 地址

This commit is contained in:
whyour
2026-06-01 18:28:54 +08:00
parent e8ac195c96
commit 4e803df51e
3 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const { join } = require('path');
class GrpcClient {
static #config = {
protoPath: join(process.env.QL_DIR, 'back/protos/api.proto'),
serverAddress: `0.0.0.0:${process.env.GRPC_PORT || '5500'}`,
serverAddress: `localhost:${process.env.GRPC_PORT || '5500'}`,
protoOptions: {
keepCase: true,
longs: String,