querysub 0.288.0 → 0.290.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.288.0",
3
+ "version": "0.290.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",
@@ -351,9 +351,9 @@ const runScreenCommand = measureWrap(async function runScreenCommand(config: {
351
351
  time: rollingFinalTime,
352
352
  });
353
353
  }
354
- console.log(green(`Renaming screen ${screenName} to for rolling interval ${config.rollingWindow} at ${new Date().toLocaleString()}`));
355
- let rollingScreenName = screenName + "-rolling";
356
- await runPromise(`${prefix}tmux rename-window -t ${screenName} ${rollingScreenName}`);
354
+ let rollingScreenName = screenName + "-rolling" + SCREEN_SUFFIX;
355
+ console.log(green(`Renaming screen ${screenName} to ${rollingScreenName} for rolling interval ${config.rollingWindow} at ${new Date().toLocaleString()}`));
356
+ await runPromise(`${prefix}tmux rename-session -t ${screenName} ${rollingScreenName}`);
357
357
  rollingScreens.set(rollingScreenName, screenName);
358
358
  rollingKeepScreenAlive.set(rollingScreenName, {
359
359
  rollingScreenName,