Skip to content

Commit 3e5750d

Browse files
committed
fix pandas-dataframe exclusion in integration manager
1 parent 23fb044 commit 3e5750d

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/notebooks/deepnote/integrations/integrationManager.ts

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -163,15 +163,14 @@ export class IntegrationManager implements IIntegrationManager {
163163

164164
if (integrationType === 'pandas-dataframe') {
165165
logger.debug(`IntegrationManager: Skipping internal DuckDB integration ${selectedIntegrationId}`);
166-
return;
166+
} else {
167+
integrations.set(selectedIntegrationId, {
168+
config: config || null,
169+
status: config ? IntegrationStatus.Connected : IntegrationStatus.Disconnected,
170+
integrationName,
171+
integrationType
172+
});
167173
}
168-
169-
integrations.set(selectedIntegrationId, {
170-
config: config || null,
171-
status: config ? IntegrationStatus.Connected : IntegrationStatus.Disconnected,
172-
integrationName,
173-
integrationType
174-
});
175174
}
176175

177176
if (integrations.size === 0) {

0 commit comments

Comments
 (0)