diff --git a/packages/server/gateway/index.js b/packages/server/gateway/index.js index 3fe65318..559f5ec7 100755 --- a/packages/server/gateway/index.js +++ b/packages/server/gateway/index.js @@ -320,9 +320,9 @@ export default class Gateway { await this.createServicesRegistry() await this.createServiceInstances() - // WARNING: Starting relp makes uwebsockets unable to work properly, surging some bugs from nodejs (domain.enter) - // use another alternative to parse commands, like stdin reading or something... - this.startRELP() + if (!isProduction) { + this.startRELP() + } } startRELP() {