querysub 0.419.0 → 0.420.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.419.0",
3
+ "version": "0.420.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",
@@ -443,8 +443,8 @@ export class PathFunctionRunner {
443
443
  if (!secondaryShardRange) return 0;
444
444
  let fraction = getRoutingOverridePart(callPath.CallId)?.route;
445
445
  if (fraction === undefined) {
446
- console.error(`No routing override found for callId, falling back to direct hash`);
447
446
  fraction = PathRouter.getSingleKeyRoute(callPath.CallId);
447
+ console.error(`No routing override found for callId, falling back to direct hash`, { callId: callPath.CallId, fraction });
448
448
  }
449
449
  // It isn't secondary if it is primary
450
450
  if (shardRange.startFraction <= fraction && fraction < shardRange.endFraction) return 0;
package/tempnotes.txt DELETED
@@ -1,12 +0,0 @@
1
-
2
- Issue
3
- - The function sharding doesn't work. I think it's the specific path range not working. And we even get an error saying that we failed to sync.
4
-
5
-
6
- d) Deploy function sharding
7
- e) Verify by the synced values per server (only on 1 fnc server)
8
-
9
-
10
- I think even if we run into some occasional issues, we should just power through and try to fix them later. Because I'm sick of working on the framework...
11
-
12
- MONTHLY SUMMARY!