querysub 0.428.0 → 0.429.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
|
@@ -18,8 +18,8 @@ import { getAllAuthoritySpec, getEmptyAuthoritySpec } from "./PathRouterServerAu
|
|
|
18
18
|
|
|
19
19
|
setImmediate(() => import("../3-path-functions/syncSchema"));
|
|
20
20
|
|
|
21
|
-
let NETWORK_POLL_INTERVAL = timeInMinute *
|
|
22
|
-
let CALL_TIMEOUT =
|
|
21
|
+
let NETWORK_POLL_INTERVAL = timeInMinute * 1;
|
|
22
|
+
let CALL_TIMEOUT = timeInSecond * 5;
|
|
23
23
|
|
|
24
24
|
export type AuthorityEntry = {
|
|
25
25
|
nodeId: string;
|
|
@@ -636,8 +636,7 @@ export class PathRouter {
|
|
|
636
636
|
sort(fullPathMatches, x => preferredNodeIds.has(x.nodeId) ? -1 : 1);
|
|
637
637
|
sort(allSources, x => isOwnNodeId(x.nodeId) ? -1 : 1);
|
|
638
638
|
let missingRanges: { start: number; end: number }[] = [{
|
|
639
|
-
|
|
640
|
-
end: 1,
|
|
639
|
+
...parentRange
|
|
641
640
|
}];
|
|
642
641
|
let usedParts: {
|
|
643
642
|
nodeId: string;
|