Skip to content

Commit

Permalink
Avoid jq encoding problems
Browse files Browse the repository at this point in the history
  • Loading branch information
stephan271 committed Nov 8, 2022
1 parent 404f836 commit 5da03b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions helm_configs/backend/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ app.start = function() {
}

});
console.log("keepAliveTimeout,headersTimeout default:", server.keepAliveTimeout, server.headersTimeout)
server.keepAliveTimeout = (75 * 1000) + 1000;
server.headersTimeout = (75 * 1000) + 2000;
console.log("keepAliveTimeout,headersTimeout changed to:", server.keepAliveTimeout, server.headersTimeout)
console.log("keepAliveTimeout,headersTimeout default:", server.keepAliveTimeout, server.headersTimeout);
server.keepAliveTimeout = 76000;
server.headersTimeout = 77000;
console.log("keepAliveTimeout,headersTimeout changed to:", server.keepAliveTimeout, server.headersTimeout);

return server;
};
Expand Down

0 comments on commit 5da03b7

Please sign in to comment.