Short-circuit heartbeat when alive

This commit is contained in:
Asher 2020-10-27 17:48:37 -05:00
parent 504d89638b
commit f2f1fee6f1
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 22 additions and 20 deletions

View File

@ -21,7 +21,10 @@ export class Heart {
* activity. Failures are logged as warnings. * activity. Failures are logged as warnings.
*/ */
public beat(): void { public beat(): void {
if (!this.alive()) { if (this.alive()) {
return
}
logger.trace("heartbeat") logger.trace("heartbeat")
fs.writeFile(this.heartbeatPath, "").catch((error) => { fs.writeFile(this.heartbeatPath, "").catch((error) => {
logger.warn(error.message) logger.warn(error.message)
@ -43,4 +46,3 @@ export class Heart {
}, this.heartbeatInterval) }, this.heartbeatInterval)
} }
} }
}