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.
@@ -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 break all servers. This won't break your data, but you will have to restart all servers before the system will be stable again. Before then data will be random, and invalid writes might be allowed. It is recommend to run this with only 1 querysub server running, on a developers machine. Consider writing a database iterate script instead of restoring (similar to how gc and join work).`,
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>