diff --git a/server/src/services/adapter-plugin-store.ts b/server/src/services/adapter-plugin-store.ts index 1e21acf2..5f5a9057 100644 --- a/server/src/services/adapter-plugin-store.ts +++ b/server/src/services/adapter-plugin-store.ts @@ -111,7 +111,7 @@ function readSettings(): AdapterSettings { function writeSettings(settings: AdapterSettings): void { ensureDirs(); - const tmpPath = `${ADAPTER_SETTINGS_PATH}.${process.pid}.tmp`; + const tmpPath = `${ADAPTER_SETTINGS_PATH}.tmp`; fs.writeFileSync(tmpPath, JSON.stringify(settings, null, 2), "utf-8"); fs.renameSync(tmpPath, ADAPTER_SETTINGS_PATH); settingsCache = settings;