Skip to content
Snippets Groups Projects
Commit bd3af4ec authored by Vijay Pai's avatar Vijay Pai Committed by GitHub
Browse files

Merge pull request #8984 from murgatroid99/node_perf_test_quit_fix

Perform quit operations in a useful order in Node perf tests
parents 7c9076ab 200ef287
No related branches found
No related tags found
No related merge requests found
...@@ -55,9 +55,8 @@ module.exports = function WorkerServiceImpl(benchmark_impl, server) { ...@@ -55,9 +55,8 @@ module.exports = function WorkerServiceImpl(benchmark_impl, server) {
} }
this.quitWorker = function quitWorker(call, callback) { this.quitWorker = function quitWorker(call, callback) {
server.tryShutdown(function() { callback(null, {});
callback(null, {}); server.tryShutdown(function() {});
});
}; };
this.runClient = function runClient(call) { this.runClient = function runClient(call) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment