querysub 0.320.0 → 0.321.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
|
@@ -16,7 +16,7 @@ import { SocketFunction } from "socket-function/SocketFunction";
|
|
|
16
16
|
import { isHotReloading, watchFilesAndTriggerHotReloading } from "socket-function/hot/HotReloadController";
|
|
17
17
|
import { RequireController, setRequireBootRequire } from "socket-function/require/RequireController";
|
|
18
18
|
import { cache, cacheLimited, lazy } from "socket-function/src/caching";
|
|
19
|
-
import { getOwnMachineId, getThreadKeyCert, verifyMachineIdForPublicKey } from "../-a-auth/certs";
|
|
19
|
+
import { getOwnMachineId, getOwnThreadId, getThreadKeyCert, verifyMachineIdForPublicKey } from "../-a-auth/certs";
|
|
20
20
|
import { getHostedIP, getSNICerts, publishMachineARecords } from "../-e-certs/EdgeCertController";
|
|
21
21
|
import { LOCAL_DOMAIN, nodePathAuthority } from "../0-path-value-core/NodePathAuthorities";
|
|
22
22
|
import { debugCoreMode, registerGetCompressNetwork, encodeParentFilter, registerGetCompressDisk, authorityStorage } from "../0-path-value-core/pathValueCore";
|
|
@@ -519,7 +519,7 @@ export class Querysub {
|
|
|
519
519
|
|
|
520
520
|
public static getOwnNodeId = getOwnNodeId;
|
|
521
521
|
public static getSelfNodeId = getOwnNodeId;
|
|
522
|
-
public static getOwnThreadId =
|
|
522
|
+
public static getOwnThreadId = getOwnThreadId;
|
|
523
523
|
|
|
524
524
|
/** Set ClientWatcher.DEBUG_SOURCES to true for to be populated */
|
|
525
525
|
public static getTriggerReason() {
|