querysub 0.285.0 → 0.287.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.285.0",
3
+ "version": "0.287.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",
@@ -1,6 +1,9 @@
1
1
  #! /bin/bash
2
2
  tmux new -s machine-alwaysup -d
3
- # Kill anything that is running on it first
4
3
  tmux send-keys -t machine-alwaysup "C-c" Enter
5
4
  sleep 3
5
+ # ctrl+c wasn't working, which causes huge issues, so... just kill the screen so it's definitely dead
6
+ tmux kill-session -t machine-alwaysup 2>/dev/null || true
7
+ tmux new -s machine-alwaysup -d
8
+ sleep 3
6
9
  tmux send-keys -t machine-alwaysup "cd ~/machine-alwaysup && yarn machine-alwaysup" Enter
@@ -564,7 +564,7 @@ const resyncServicesBase = runInSerial(measureWrap(async function resyncServices
564
564
  continue;
565
565
  }
566
566
 
567
- console.log(`Resyncing service ${magenta(screenName)}`);
567
+ console.log(`Resyncing service ${magenta(screenName)}, with ${JSON.stringify(config.parameters)}`);
568
568
 
569
569
  await fs.promises.writeFile(parameterPath, newParametersString);
570
570