feat(utilities): changed vars
This commit is contained in:
parent
60ede0a112
commit
dd347a724a
2 changed files with 10 additions and 3 deletions
|
|
@ -78,12 +78,12 @@ if (process.env.uws !== "true") {
|
|||
|
||||
|
||||
/* Either onAborted or simply finished request */
|
||||
function onAbortedOrFinishedResponse(res, readStream) {
|
||||
const onAbortedOrFinishedResponse = function (res, readStream) {
|
||||
|
||||
if (res.id === -1) {
|
||||
console.log("ERROR! onAbortedOrFinishedResponse called twice for the same res!");
|
||||
debug && console.log("ERROR! onAbortedOrFinishedResponse called twice for the same res!");
|
||||
} else {
|
||||
console.log('Stream was closed, openStreams: ' + --openStreams);
|
||||
debug && console.log('Stream was closed');
|
||||
console.timeEnd(res.id);
|
||||
readStream.destroy();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -95,6 +95,13 @@ chalice:
|
|||
# idp_name: ''
|
||||
# idp_tenantKey: ''
|
||||
|
||||
utilities:
|
||||
replicaCount: 1
|
||||
env:
|
||||
debug: 0
|
||||
uws: false
|
||||
cluster: false
|
||||
|
||||
# If you want to override something
|
||||
# chartname:
|
||||
# filedFrom chart/Values.yaml:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue