We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2025eaf commit 696f7a5Copy full SHA for 696f7a5
lib/_tls_wrap.js
@@ -65,7 +65,8 @@ function onhandshakestart(now) {
65
debug('onhandshakestart');
66
67
const { lastHandshakeTime } = this;
68
- assert(now >= lastHandshakeTime);
+ assert(now >= lastHandshakeTime,
69
+ `now (${now}) < lastHandshakeTime (${lastHandshakeTime})`);
70
71
this.lastHandshakeTime = now;
72
0 commit comments