Skip to content

Commit

Permalink
Merge pull request #627 from namecheap/perf/fix-cpu-perf
Browse files Browse the repository at this point in the history
perf(ilc server): update tailorx
  • Loading branch information
stas-nc authored Nov 19, 2024
2 parents 139f77f + 46f0b6a commit 4f0ec19
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ jobs:
fullCoverageDiff: true
autorun: false
postComment: false
oldCodeCoveragePath: ./dest-client-side-tests-artifacts/coverage/chrome/coverage-summary.json # remove "chrome after merge PR fix cpu
oldCodeCoveragePath: ./dest-client-side-tests-artifacts/coverage/coverage-summary.json
newCodeCoveragePath: ./src-client-side-tests-artifacts/coverage/coverage-summary.json
total_delta: 2
- name: Merge coverage report for registry
Expand Down
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 4f0ec19

Please sign in to comment.