querysub 0.463.0 → 0.464.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
|
@@ -693,7 +693,7 @@ registerGetSpecForChildPath(path => {
|
|
|
693
693
|
|
|
694
694
|
if (!remoteWatcher.hasAnyDirectPathWatches(path)) {
|
|
695
695
|
// NOTE: This might mean that our Path Watcher and remote watcher are out of sync, which is a big problem and will break things.
|
|
696
|
-
console.error(`We do not own a path, but also aren't watching it on a remote, but...
|
|
696
|
+
console.error(`We do not own a path, but also aren't watching it on a remote, but... we received the value? This is weird, and will probably break things (we will likely ignore this value / not trigger parent watches for it).`, { path });
|
|
697
697
|
}
|
|
698
698
|
}
|
|
699
699
|
return authorityLookup.getOurSpec();
|
|
@@ -142,22 +142,22 @@ export function getQuerysubStatsSync(): StatDefinition[] {
|
|
|
142
142
|
getFnValue: fn => fn.totalCalls,
|
|
143
143
|
}),
|
|
144
144
|
makeCallStatSync({
|
|
145
|
-
perFn, category: "Calls", title: "Rejected
|
|
145
|
+
perFn, category: "Calls", title: "Rejected reruns", emoji: "⚠️",
|
|
146
146
|
threshold: 10,
|
|
147
|
-
getFnValue: fn => fn.totalFullReruns
|
|
147
|
+
getFnValue: fn => fn.totalFullReruns,
|
|
148
148
|
}),
|
|
149
149
|
makeCallStatSync({
|
|
150
|
-
perFn, category: "Calls", title: "
|
|
150
|
+
perFn, category: "Calls", title: "Rerun to sync data", emoji: "♻️",
|
|
151
151
|
threshold: 10,
|
|
152
|
-
getFnValue: fn => fn.totalInternalReruns
|
|
152
|
+
getFnValue: fn => fn.totalInternalReruns,
|
|
153
153
|
}),
|
|
154
154
|
makeCallStatSync({
|
|
155
|
-
perFn, category: "Calls", title: "Calls with multiple
|
|
155
|
+
perFn, category: "Calls", title: "Calls with multiple resyncs", emoji: "🔦",
|
|
156
156
|
threshold: 10,
|
|
157
157
|
getFnValue: fn => fn.callsWithMultipleInternalRuns,
|
|
158
158
|
}),
|
|
159
159
|
makeCallStatSync({
|
|
160
|
-
perFn, category: "Calls", title: "Calls
|
|
160
|
+
perFn, category: "Calls", title: "Calls with multiple rejections", emoji: "📈",
|
|
161
161
|
threshold: 10,
|
|
162
162
|
getFnValue: fn => fn.callsWithCascadingRuns,
|
|
163
163
|
}),
|