Update index.js

Added a missing return HeaderService.prototype._handleError
This commit is contained in:
tripathyr 2023-01-09 05:12:39 +05:30 committed by GitHub
parent e3f5de4df5
commit 00515c5378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -495,7 +495,8 @@ HeaderService.prototype._onHeaders = function(headers) {
};
HeaderService.prototype._handleError = function(err) {
log.error('Error in Header Service: ' + err);
log.error('Error in Header Service: ' + err);
return;
//this.node.stop();
};