@comunica/actor-init-query 2.2.2-alpha.13.0 → 2.2.2-alpha.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -301,9 +301,10 @@ class HttpServiceSparqlEndpoint {
301
301
  // Listen for shutdown events from master for timeouts
302
302
  const messageListener = (message) => {
303
303
  if (message === 'shutdown') {
304
- response.end('!TIMED OUT!');
305
- // eslint-disable-next-line unicorn/no-process-exit
306
- process.exit(9);
304
+ response.end('!TIMEDOUT!', () => {
305
+ // eslint-disable-next-line unicorn/no-process-exit
306
+ process.exit(9);
307
+ });
307
308
  }
308
309
  };
309
310
  process.on('message', messageListener);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comunica/actor-init-query",
3
- "version": "2.2.2-alpha.13.0",
3
+ "version": "2.2.2-alpha.14.0",
4
4
  "description": "A query init actor",
5
5
  "lsd:module": true,
6
6
  "main": "lib/index.js",
@@ -31,19 +31,19 @@
31
31
  "lib/**/*.js"
32
32
  ],
33
33
  "dependencies": {
34
- "@comunica/actor-http-proxy": "2.2.2-alpha.13.0",
35
- "@comunica/bus-context-preprocess": "2.2.2-alpha.13.0",
36
- "@comunica/bus-http-invalidate": "2.2.2-alpha.13.0",
37
- "@comunica/bus-init": "2.2.2-alpha.13.0",
38
- "@comunica/bus-optimize-query-operation": "2.2.2-alpha.13.0",
39
- "@comunica/bus-query-operation": "2.2.2-alpha.13.0",
40
- "@comunica/bus-query-parse": "2.2.2-alpha.13.0",
41
- "@comunica/bus-query-result-serialize": "2.2.2-alpha.13.0",
42
- "@comunica/context-entries": "2.2.2-alpha.13.0",
43
- "@comunica/core": "2.2.2-alpha.13.0",
44
- "@comunica/logger-pretty": "2.2.2-alpha.13.0",
45
- "@comunica/runner": "2.2.2-alpha.13.0",
46
- "@comunica/types": "2.2.2-alpha.13.0",
34
+ "@comunica/actor-http-proxy": "2.2.2-alpha.14.0",
35
+ "@comunica/bus-context-preprocess": "2.2.2-alpha.14.0",
36
+ "@comunica/bus-http-invalidate": "2.2.2-alpha.14.0",
37
+ "@comunica/bus-init": "2.2.2-alpha.14.0",
38
+ "@comunica/bus-optimize-query-operation": "2.2.2-alpha.14.0",
39
+ "@comunica/bus-query-operation": "2.2.2-alpha.14.0",
40
+ "@comunica/bus-query-parse": "2.2.2-alpha.14.0",
41
+ "@comunica/bus-query-result-serialize": "2.2.2-alpha.14.0",
42
+ "@comunica/context-entries": "2.2.2-alpha.14.0",
43
+ "@comunica/core": "2.2.2-alpha.14.0",
44
+ "@comunica/logger-pretty": "2.2.2-alpha.14.0",
45
+ "@comunica/runner": "2.2.2-alpha.14.0",
46
+ "@comunica/types": "2.2.2-alpha.14.0",
47
47
  "@rdfjs/types": "*",
48
48
  "@types/yargs": "^17.0.2",
49
49
  "asynciterator": "^3.4.2",
@@ -62,5 +62,5 @@
62
62
  "browser": {
63
63
  "./lib/index.js": "./lib/index-browser.js"
64
64
  },
65
- "gitHead": "f3a79b04bcf5f96767847cc335145491ccba68ff"
65
+ "gitHead": "2b613e5a60a3d7edff541863482646b5f6013a52"
66
66
  }