Skip to content

Commit

Permalink
Dump intrp.Server instance .timeLimit values
Browse files Browse the repository at this point in the history
This is not otherwise preserved.
  • Loading branch information
cpcallen committed Mar 3, 2021
1 parent 91d3959 commit e2c9652
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/dumper.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ Dumper.prototype.dump = function() {
var port = Number(key);
var listener = this.intrp2.listeners_[port];
this.write(this.exprForBuiltin_('CC.connectionListen') + '(' +
port + ', ' + this.exprFor_(listener.proto) + ');');
port + ', ' + this.exprFor_(listener.proto) + ', ' +
this.exprFor_(listener.timeLimit) + ');');
}
};

Expand Down

0 comments on commit e2c9652

Please sign in to comment.