querysub 0.616.0 → 0.619.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 +1 -1
- package/src/-a-archives/archives2.ts +6 -6
- package/src/-f-node-discovery/NodeDiscovery.ts +2 -2
- package/src/0-path-value-core/PathValueController.ts +4 -0
- package/src/0-path-value-core/PathValueStats.ts +83 -0
- package/src/0-path-value-core/archiveLocks/archiveSnapshots.ts +0 -5
- package/src/1-path-client/RemoteWatcher.ts +4 -2
- package/src/deployManager/MachinesPage.tsx +3 -0
- package/src/deployManager/urlParams.ts +1 -1
- package/src/diagnostics/managementPages.tsx +4 -6
- package/src/diagnostics/misc-pages/FunctionRunnersSection.tsx +38 -0
- package/src/diagnostics/misc-pages/LatencyGraphSection.tsx +524 -0
- package/src/diagnostics/misc-pages/PathValueServersSection.tsx +154 -0
- package/src/diagnostics/misc-pages/RoutingTablePage.tsx +34 -597
- package/src/diagnostics/misc-pages/SnapshotViewer.tsx +1 -2
|
@@ -126,7 +126,7 @@ export class SnapshotViewer extends qreact.Component {
|
|
|
126
126
|
}
|
|
127
127
|
<Button onClick={async () => {
|
|
128
128
|
let didConfirm = await seriousConfirm({
|
|
129
|
-
message: `Restoring will
|
|
129
|
+
message: `Restoring will put the servers in a bad state. You're gonna need to restart all services after this.`,
|
|
130
130
|
});
|
|
131
131
|
if (!didConfirm) {
|
|
132
132
|
console.log(red("Aborted restore"));
|
|
@@ -137,7 +137,6 @@ export class SnapshotViewer extends qreact.Component {
|
|
|
137
137
|
overview: entry
|
|
138
138
|
});
|
|
139
139
|
console.log(green("Restored snapshot"));
|
|
140
|
-
window.location.reload();
|
|
141
140
|
}}>
|
|
142
141
|
Restore
|
|
143
142
|
</Button>
|