querysub 0.258.0 → 0.260.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.258.0",
3
+ "version": "0.260.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",
@@ -522,6 +522,7 @@ type ServiceConfig = ${serviceConfigType}
522
522
  this.updateUnsavedChanges(configT);
523
523
  }}
524
524
  >
525
+ <b>Update to New</b>
525
526
  <div className={css.hbox(5)}>
526
527
  <b>New</b>
527
528
  <RenderGitRefInfo gitRef={gitInfo.latestRef} />
@@ -25,7 +25,7 @@ import { onServiceConfigChange } from "./machineController";
25
25
  import { PromiseObj } from "../promise";
26
26
  import path from "path";
27
27
 
28
- const PIPE_FILE_LINE_LIMIT = 100_000;
28
+ const PIPE_FILE_LINE_LIMIT = 10_000;
29
29
 
30
30
  const getLiveMachineInfo = measureWrap(async function getLiveMachineInfo() {
31
31
  let machineInfo: MachineInfo = {
@@ -106,6 +106,7 @@ class MachineControllerBase {
106
106
  gitFolder,
107
107
  gitRef: config.gitRef,
108
108
  });
109
+ await runPromise("yarn install", { cwd: gitFolder });
109
110
  await runPromise("bash machine-startup.sh", { cwd: os.homedir() });
110
111
  }
111
112
 
@@ -1,8 +1,5 @@
1
- OH! Each service has a different machine id?
2
- Hmm... well... it's the WORST thing every. It is a bit annoying...
3
- - That explains the slow startup time...
4
-
5
-
1
+ Our test node isn't appearing. What? Ugh...
2
+ - AND I think nodes are never being removed long term? Ugh...
6
3
 
7
4
  7.1) Verify quick node removal work by having a repeatedly crashing service, verifying the node exists, and then goes away on crash.
8
5