We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a6bb14 commit ce55905Copy full SHA for ce55905
client/client_system.ts
@@ -51,7 +51,7 @@ import { serviceRegistrySyscalls } from "./plugos/syscalls/service_registry.ts";
51
const indexVersionKey = ["$indexVersion"];
52
const indexQueuedKey = ["$indexQueued"];
53
// Bump this one every time a full reindex is needed
54
-const desiredIndexVersion = 8;
+const desiredIndexVersion = 9;
55
const mqTimeout = 10000; // 10s
56
const mqTimeoutRetry = 3;
57
@@ -302,6 +302,8 @@ export class ClientSystem {
302
console.info(
303
"[index]",
304
"Performing a full space reindex, this could take a while...",
305
+ currentIndexVersion,
306
+ desiredIndexVersion,
307
);
308
await this.setIndexOngoing(true);
309
await this.system.invokeFunction("index.reindexSpace", []);
0 commit comments