fix(outbound): preserve channel registry during provider snapshots

This commit is contained in:
Peter Steinberger
2026-03-15 21:45:09 -07:00
parent 7a6be3d531
commit 0c2ae71366
8 changed files with 48 additions and 10 deletions

View File

@@ -35,6 +35,7 @@ const BUNDLED_PROVIDER_ALLOWLIST_COMPAT_PLUGIN_IDS = [
"venice",
"vercel-ai-gateway",
"volcengine",
"xai",
"vllm",
"xiaomi",
"zai",
@@ -142,8 +143,8 @@ export function resolvePluginProviders(params: {
workspaceDir: params.workspaceDir,
env: params.env,
onlyPluginIds: params.onlyPluginIds,
activate: params.activate,
cache: params.cache,
cache: params.cache ?? false,
activate: params.activate ?? false,
logger: createPluginLoaderLogger(log),
});