Perform quit operations in a useful order in Node perf tests

pull/8984/head
murgatroid99 8 years ago
parent 7c9076ab7a
commit 200ef28796
  1. 5
      src/node/performance/worker_service_impl.js

@ -55,9 +55,8 @@ module.exports = function WorkerServiceImpl(benchmark_impl, server) {
}
this.quitWorker = function quitWorker(call, callback) {
server.tryShutdown(function() {
callback(null, {});
});
callback(null, {});
server.tryShutdown(function() {});
};
this.runClient = function runClient(call) {

Loading…
Cancel
Save