Skip to content

Commit

Permalink
slight revert
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Apr 3, 2024
1 parent 07f760d commit 46f1317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class MessageStream extends Stream {
this.total_buffered = 0;
this._queue = [];
this.max_data_inflight = 0;
this.buffer_max = (!isNaN(cfg?.main?.spool_after) ? Number(cfg?.main?.spool_after) : -1);
this.buffer_max = (!isNaN(cfg?.main?.spool_after) ? Number(cfg.main.spool_after) : -1);
this.spooling = false;
this.fd = null;
this.open_pending = false;
Expand Down

0 comments on commit 46f1317

Please sign in to comment.