fix: avoid eager web provider config reads

This commit is contained in:
Peter Steinberger
2026-04-05 09:33:50 +01:00
parent 0b8336f49d
commit 22db77d2b6
3 changed files with 7 additions and 2 deletions

View File

@@ -62,7 +62,6 @@ function buildWebFetchSnapshotCacheKey(params: {
onlyPluginIds: [...new Set(params.onlyPluginIds ?? [])].toSorted((left, right) =>
left.localeCompare(right),
),
config: params.config ?? null,
env: buildPluginSnapshotCacheEnvKey(params.env),
});
}

View File

@@ -61,7 +61,6 @@ function buildWebSearchSnapshotCacheKey(params: {
onlyPluginIds: [...new Set(params.onlyPluginIds ?? [])].toSorted((left, right) =>
left.localeCompare(right),
),
config: params.config ?? null,
env: buildPluginSnapshotCacheEnvKey(params.env),
});
}