diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-08 06:37:04 -0500 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-08 06:37:04 -0500 |
commit | 643e8a295c954c5b2fd40ed17269a239a9653c00 (patch) | |
tree | 49c63b4bce889656dd0df174a5b5b2863019cc15 /src | |
parent | 78bedabbbe0682d089c343ad94d90d0311bdfe0e (diff) |
clean up
Diffstat (limited to 'src')
-rw-r--r-- | src/server/Session/session.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/server/Session/session.ts b/src/server/Session/session.ts index 8bee99f41..3b2be9d6a 100644 --- a/src/server/Session/session.ts +++ b/src/server/Session/session.ts @@ -464,10 +464,7 @@ export namespace Session { */ private configureProcess = () => { // updates the local values of variables to the those sent from master - process.on("message", async ({ setResponsiveness, newPollingIntervalSeconds, manualExit }) => { - if (setResponsiveness !== undefined) { - this.shouldServerBeResponsive = setResponsiveness; - } + process.on("message", async ({ newPollingIntervalSeconds, manualExit }) => { if (newPollingIntervalSeconds !== undefined) { this.pollingIntervalSeconds = newPollingIntervalSeconds; } |