Skip to content

Commit 05ad0e6

Browse files
authored
preserve launch env in provider sessions (#23)
1 parent cbf6e42 commit 05ad0e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/server/src/provider/ProviderInstanceEnvironment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function mergeProviderSessionEnvironment(
2929
const next = stripManagedRuntimeEnvKeys(baseEnv ?? process.env);
3030
if (!sessionEnv) return next;
3131
for (const [key, value] of Object.entries(sessionEnv)) {
32-
if (value !== undefined && !isManagedRuntimeEnvKey(key)) {
32+
if (value !== undefined) {
3333
next[key] = value;
3434
}
3535
}

0 commit comments

Comments
 (0)