@agoric/telemetry 0.6.3-dev-056a064.0 → 0.6.3-dev-9f34f9d.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": "@agoric/telemetry",
3
- "version": "0.6.3-dev-056a064.0+056a064",
3
+ "version": "0.6.3-dev-9f34f9d.0+9f34f9d",
4
4
  "description": "Agoric's telemetry implementation",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/Agoric/agoric-sdk",
@@ -22,9 +22,9 @@
22
22
  "author": "Agoric",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@agoric/assert": "0.6.1-dev-056a064.0+056a064",
26
- "@agoric/internal": "0.3.3-dev-056a064.0+056a064",
27
- "@agoric/store": "0.9.3-dev-056a064.0+056a064",
25
+ "@agoric/assert": "0.6.1-dev-9f34f9d.0+9f34f9d",
26
+ "@agoric/internal": "0.3.3-dev-9f34f9d.0+9f34f9d",
27
+ "@agoric/store": "0.9.3-dev-9f34f9d.0+9f34f9d",
28
28
  "@endo/init": "^0.5.56",
29
29
  "@endo/marshal": "^0.8.5",
30
30
  "@endo/stream": "^0.3.25",
@@ -60,5 +60,5 @@
60
60
  "timeout": "20m",
61
61
  "workerThreads": false
62
62
  },
63
- "gitHead": "056a0640acce4cac1587549f505e6a19176b3ce5"
63
+ "gitHead": "9f34f9d4e0c6c6db24b28bd6157df25b348b8232"
64
64
  }
@@ -14,7 +14,6 @@ const main = async () => {
14
14
  }
15
15
 
16
16
  for await (const file of files) {
17
- // eslint-disable-next-line @jessie.js/no-nested-await
18
17
  const { readCircBuf } = await makeMemoryMappedCircularBuffer({
19
18
  circularBufferFilename: file,
20
19
  circularBufferSize: 0,
@@ -50,7 +49,6 @@ const main = async () => {
50
49
  }
51
50
 
52
51
  // If the buffer is full, wait for stdout to drain.
53
- // eslint-disable-next-line no-await-in-loop, @jessie.js/no-nested-await
54
52
  await new Promise(resolve => process.stdout.once('drain', resolve));
55
53
  }
56
54
  }