mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-19 17:11:45 +00:00
chore(lint): enable stricter error rules
This commit is contained in:
@@ -505,7 +505,9 @@ export async function gatherDaemonStatus(
|
||||
: process.env;
|
||||
const [loaded, runtime] = await Promise.all([
|
||||
service.isLoaded({ env: serviceEnv }).catch(() => false),
|
||||
service.readRuntime(serviceEnv).catch((err) => ({ status: "unknown", detail: String(err) })),
|
||||
service
|
||||
.readRuntime(serviceEnv)
|
||||
.catch((err: unknown) => ({ status: "unknown", detail: String(err) })),
|
||||
]);
|
||||
const restartHandoff = opts.deep ? readGatewayRestartHandoffSync(serviceEnv) : null;
|
||||
const configAudit = command
|
||||
|
||||
Reference in New Issue
Block a user