querysub 0.673.0 → 0.675.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.673.0",
3
+ "version": "0.675.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,8 +79,8 @@
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.140",
83
- "socket-function": "^1.2.35",
82
+ "sliftutils": "^1.7.149",
83
+ "socket-function": "^1.2.36",
84
84
  "terser": "^5.31.0",
85
85
  "typenode": "^6.6.1",
86
86
  "typesafecss": "^0.32.0",
@@ -138,7 +138,9 @@ export class ServiceDetailPage extends qreact.Component {
138
138
  {group.map(({ entryIndex, index, target }) => {
139
139
  // Variables set on the entry but no longer in the command are still shown (flagged), so stale values can be cleared.
140
140
  let variableNames = [...new Set([...templateVariables, ...Object.keys(target.variables)])];
141
- return <div key={entryIndex} className={css.hbox(8).alignItems("center").pad2(8, 4).hsl(0, 0, 100)}>
141
+ return <div key={entryIndex} className={css.hbox(8).alignItems("center").pad2(8, 4).hsl(0, 0, 100)}
142
+ title={applyCommandTemplate(config.parameters.command, target.variables)}
143
+ >
142
144
  <div className={css.fontSize(11).colorhsl(0, 0, 40)}>{getScreenName({ serviceKey: config.parameters.key, index })}</div>
143
145
  {variableNames.map(name => {
144
146
  let inCommand = templateVariables.includes(name);
@@ -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