We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ba4e28 commit a6bef61Copy full SHA for a6bef61
src/notebooks/deepnote/integrations/integrationUtils.ts
@@ -29,6 +29,11 @@ export async function scanBlocksForIntegrations(
29
for (const block of blocks) {
30
const integrationId = block.sql_integration_id;
31
32
+ // Skip blocks without integration IDs
33
+ if (!integrationId) {
34
+ continue;
35
+ }
36
+
37
// Skip excluded integrations (e.g., internal DuckDB integration)
38
if (integrationId === DATAFRAME_SQL_INTEGRATION_ID) {
39
logger.trace(`${logContext}: Skipping excluded integration: ${integrationId} in block ${block.id}`);
@@ -54,5 +59,6 @@ export async function scanBlocksForIntegrations(
54
59
}
55
60
56
61
logger.debug(`${logContext}: Found ${integrations.size} integrations`);
62
57
63
return integrations;
58
64
0 commit comments