mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 00:11:31 +00:00
Matrix: fix verification client lifecycle and quiet CLI noise
This commit is contained in:
@@ -42,6 +42,11 @@ describe("warning filter", () => {
|
||||
name: "ExperimentalWarning",
|
||||
message: "SQLite is an experimental feature and might change at any time",
|
||||
},
|
||||
}),
|
||||
{
|
||||
name: "Warning",
|
||||
message: "`--localstorage-file` was provided without a valid path",
|
||||
},
|
||||
];
|
||||
|
||||
for (const warning of ignoredWarnings) {
|
||||
|
||||
@@ -23,6 +23,9 @@ export function shouldIgnoreWarning(warning: ProcessWarning): boolean {
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
if (warning.message?.includes("`--localstorage-file` was provided without a valid path")) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user