We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a7cf544 + d2c1593 commit 99fc1c9Copy full SHA for 99fc1c9
packages/cubejs-server/src/server.ts
@@ -115,6 +115,8 @@ export class CubejsServer {
115
}
116
117
const PORT = getEnv('port');
118
+ this.server.keepAliveTimeout = parseInt(process.env.CUBEJS_SERVER_KEEP_ALIVE_TIMEOUT || '5000')
119
+ this.server.headersTimeout = parseInt(process.env.CUBEJS_SERVER_HEADERS_TIMEOUT || '60000')
120
await this.server.listen(PORT);
121
122
return {
0 commit comments