querysub 0.672.0 → 0.674.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "querysub",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.674.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"node-forge": "https://github.com/sliftist/forge#e618181b469b07bdc70b968b0391beb8ef5fecd6",
|
|
80
80
|
"pako": "^2.1.0",
|
|
81
81
|
"peggy": "^5.0.6",
|
|
82
|
-
"sliftutils": "^1.7.
|
|
82
|
+
"sliftutils": "^1.7.140",
|
|
83
83
|
"socket-function": "^1.2.35",
|
|
84
84
|
"terser": "^5.31.0",
|
|
85
85
|
"typenode": "^6.6.1",
|
|
@@ -12,6 +12,10 @@ import { getMachineId, getOwnThreadId } from "sliftutils/misc/https/certs";
|
|
|
12
12
|
import { getDomain } from "../config";
|
|
13
13
|
import { getOwnMachineId } from "sliftutils/misc/https/certs";
|
|
14
14
|
|
|
15
|
+
// IMPORTANT! If the machines are in an especially bad state, you might also need to run Set up machine on all the remote IPs. This will force the service manager to update, and then it can update all your services.
|
|
16
|
+
// - also might need to change getArchives2 to remove some storage sources if they are completely broken.
|
|
17
|
+
// yarn setup-machine 10.0.0.188
|
|
18
|
+
|
|
15
19
|
// setServiceConfigs notifies the machines without awaiting the notifications, so we linger before exiting to let them go out. If they are lost anyway (ex, the machines are unreachable), the machines still pick up the new configs on their fallback resync poll.
|
|
16
20
|
const NOTIFY_GRACE_PERIOD = 10 * 1000;
|
|
17
21
|
|