kitowall 6.9.0 → 6.10.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/dist/core/workshop.js +4 -0
- package/package.json +1 -1
package/dist/core/workshop.js
CHANGED
|
@@ -33,6 +33,7 @@ const fs_1 = require("../utils/fs");
|
|
|
33
33
|
const net_1 = require("../utils/net");
|
|
34
34
|
const logs_1 = require("./logs");
|
|
35
35
|
const exec_1 = require("../utils/exec");
|
|
36
|
+
const init_1 = require("./init");
|
|
36
37
|
const WE_APP_ID = 431960;
|
|
37
38
|
const SEARCH_TTL_MS = 10 * 60 * 1000;
|
|
38
39
|
const DEFAULT_PAGE_SIZE = 24;
|
|
@@ -1161,6 +1162,9 @@ async function workshopStop(options) {
|
|
|
1161
1162
|
await stopKnownLiveProcesses();
|
|
1162
1163
|
}
|
|
1163
1164
|
const coexist = shouldRestore ? await workshopCoexistenceExit() : { ok: true, restored: [] };
|
|
1165
|
+
if (shouldRestore) {
|
|
1166
|
+
await (0, init_1.initKitowall)({ namespace: 'kitowall', apply: true, force: true });
|
|
1167
|
+
}
|
|
1164
1168
|
return {
|
|
1165
1169
|
ok: true,
|
|
1166
1170
|
stopped_instances: stopped,
|