Merge pull request #1017 from Molecule-AI/fix/rows-err-missing

fix(bundle/exporter): add rows.Err() check + MCP secret scrub
This commit is contained in:
molecule-ai[bot] 2026-04-20 08:47:49 -07:00 committed by GitHub
commit fabb108cb4

View File

@ -92,6 +92,9 @@ func Export(ctx context.Context, workspaceID, configsDir string, dockerCli *clie
}
}
}
if err := rows.Err(); err != nil {
return nil, fmt.Errorf("export sub-workspaces: %w", err)
}
}
return b, nil