We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9bae64 commit f679d17Copy full SHA for f679d17
src/dh/dhc.ts
@@ -152,7 +152,8 @@ export async function initDhcSession(
152
153
const session = await cn.startSession(type);
154
155
- const remoteFileSourcePlugin = await getRemoteFileSourcePlugin(cnId, session);
+ const remoteFileSourcePlugin =
156
+ type === 'python' ? await getRemoteFileSourcePlugin(cnId, session) : null;
157
158
return { cn, cnId, remoteFileSourcePlugin, session };
159
}
0 commit comments