@riddix/hamh 2.1.0-alpha.484 → 2.1.0-alpha.485
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/dist/backend/cli.js
CHANGED
|
@@ -177901,9 +177901,9 @@ var BridgeEndpointManager = class extends Service {
|
|
|
177901
177901
|
const endpoints = this.root.parts.map((p) => p);
|
|
177902
177902
|
for (const endpoint of endpoints) {
|
|
177903
177903
|
try {
|
|
177904
|
-
await endpoint.
|
|
177904
|
+
await endpoint.close();
|
|
177905
177905
|
} catch (e) {
|
|
177906
|
-
this.log.warn(`Failed to
|
|
177906
|
+
this.log.warn(`Failed to close endpoint during dispose:`, e);
|
|
177907
177907
|
}
|
|
177908
177908
|
}
|
|
177909
177909
|
}
|
|
@@ -179359,9 +179359,9 @@ var ServerModeEndpointManager = class extends Service {
|
|
|
179359
179359
|
this.stopObserving();
|
|
179360
179360
|
if (this.deviceEndpoint) {
|
|
179361
179361
|
try {
|
|
179362
|
-
await this.deviceEndpoint.
|
|
179362
|
+
await this.deviceEndpoint.close();
|
|
179363
179363
|
} catch (e) {
|
|
179364
|
-
this.log.warn(`Failed to
|
|
179364
|
+
this.log.warn(`Failed to close device endpoint during dispose:`, e);
|
|
179365
179365
|
}
|
|
179366
179366
|
this.deviceEndpoint = void 0;
|
|
179367
179367
|
}
|