@travetto/web-http 7.0.0 → 7.0.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/web-http",
3
- "version": "7.0.0",
3
+ "version": "7.0.2",
4
4
  "type": "module",
5
5
  "description": "Web HTTP Server Support",
6
6
  "keywords": [
@@ -27,11 +27,11 @@
27
27
  "directory": "module/web-http"
28
28
  },
29
29
  "dependencies": {
30
- "@travetto/web": "^7.0.0"
30
+ "@travetto/web": "^7.0.2"
31
31
  },
32
32
  "peerDependencies": {
33
- "@travetto/cli": "^7.0.0",
34
- "@travetto/test": "^7.0.0"
33
+ "@travetto/cli": "^7.0.2",
34
+ "@travetto/test": "^7.0.2"
35
35
  },
36
36
  "peerDependenciesMeta": {
37
37
  "@travetto/test": {
@@ -1,4 +1,4 @@
1
- import { Runtime, toConcrete, Util } from '@travetto/runtime';
1
+ import { Runtime, toConcrete } from '@travetto/runtime';
2
2
  import { DependencyRegistryIndex } from '@travetto/di';
3
3
  import { CliCommand, CliCommandShape } from '@travetto/cli';
4
4
  import { NetUtil } from '@travetto/web';
@@ -28,12 +28,16 @@ export class WebHttpCommand implements CliCommandShape {
28
28
  await Registry.init();
29
29
  const instance = await DependencyRegistryIndex.getInstance(toConcrete<WebHttpServer>());
30
30
 
31
- if (this.killConflict) {
32
- const handle = await Util.acquireWithRetry(() => instance.serve(), NetUtil.freePortOnConflict, 5);
33
- return handle.complete;
34
- } else {
31
+ try {
35
32
  const handle = await instance.serve();
36
33
  return handle.complete;
34
+ } catch (err) {
35
+ const result = this.killConflict ? await NetUtil.freePortOnConflict(err) : undefined;
36
+ if (result?.processId) {
37
+ console.warn('Killed process owning port', result);
38
+ process.exit(1);
39
+ }
40
+ throw err;
37
41
  }
38
42
  }
39
43
  }