ultravisor 1.0.19 → 1.0.20
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": "ultravisor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "Cyclic process execution with ai integration.",
|
|
5
5
|
"main": "source/Ultravisor.cjs",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"pict": "^1.0.361",
|
|
35
35
|
"pict-service-commandlineutility": "^1.0.19",
|
|
36
36
|
"pict-serviceproviderbase": "^1.0.4",
|
|
37
|
-
"ultravisor-beacon": "^0.0.
|
|
37
|
+
"ultravisor-beacon": "^0.0.10",
|
|
38
38
|
"ws": "^8.20.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
@@ -2055,6 +2055,11 @@ class UltravisorAPIServer extends libPictService
|
|
|
2055
2055
|
return;
|
|
2056
2056
|
}
|
|
2057
2057
|
|
|
2058
|
+
// IMPORTANT: this enumeration must include every field the coordinator
|
|
2059
|
+
// cares about, including HostID and SharedMounts (used by the shared-fs
|
|
2060
|
+
// reachability auto-detect). Forgetting to forward a field here means
|
|
2061
|
+
// the WebSocket-registered beacon record will have that field set to
|
|
2062
|
+
// null/empty in the coordinator, even though the client sent the value.
|
|
2058
2063
|
let tmpBeacon = tmpCoordinator.registerBeacon({
|
|
2059
2064
|
Name: pData.Name,
|
|
2060
2065
|
Capabilities: pData.Capabilities,
|
|
@@ -2063,7 +2068,9 @@ class UltravisorAPIServer extends libPictService
|
|
|
2063
2068
|
MaxConcurrent: pData.MaxConcurrent,
|
|
2064
2069
|
Tags: pData.Tags,
|
|
2065
2070
|
Contexts: pData.Contexts,
|
|
2066
|
-
BindAddresses: pData.BindAddresses
|
|
2071
|
+
BindAddresses: pData.BindAddresses,
|
|
2072
|
+
HostID: pData.HostID,
|
|
2073
|
+
SharedMounts: pData.SharedMounts
|
|
2067
2074
|
});
|
|
2068
2075
|
|
|
2069
2076
|
pWebSocket._BeaconID = tmpBeacon.BeaconID;
|