We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbf6e42 commit 05ad0e6Copy full SHA for 05ad0e6
1 file changed
apps/server/src/provider/ProviderInstanceEnvironment.ts
@@ -29,7 +29,7 @@ export function mergeProviderSessionEnvironment(
29
const next = stripManagedRuntimeEnvKeys(baseEnv ?? process.env);
30
if (!sessionEnv) return next;
31
for (const [key, value] of Object.entries(sessionEnv)) {
32
- if (value !== undefined && !isManagedRuntimeEnvKey(key)) {
+ if (value !== undefined) {
33
next[key] = value;
34
}
35
0 commit comments