Skip to content

Commit

Permalink
perf(ilc server): update tailorx
Browse files Browse the repository at this point in the history
fix errorhandler
  • Loading branch information
stas-nc committed Nov 18, 2024
1 parent 139f77f commit c173d1f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions ilc/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ilc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"license": "Apache-2.0",
"dependencies": {
"@namecheap/error-extender": "^2.2.1",
"@namecheap/tailorx": "^8.2.0",
"@namecheap/tailorx": "^8.2.1",
"@newrelic/native-metrics": "^11.0.0",
"agentkeepalive": "^4.5.0",
"axios": "^1.7.7",
Expand Down
4 changes: 2 additions & 2 deletions ilc/server/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ module.exports = (registryService, pluginManager, context) => {

doneWithContext();
} catch (error) {
errorHandlingService.handleError(error, req, reply);
errorHandler.handleError(error, req, reply);
}
});
});
Expand All @@ -87,7 +87,7 @@ module.exports = (registryService, pluginManager, context) => {
});
done();
} catch (error) {
errorHandlingService.noticeError(error);
errorHandler.noticeError(error);
}
}, req.raw);
});
Expand Down

0 comments on commit c173d1f

Please sign in to comment.