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 5955eb4 commit a9cd60cCopy full SHA for a9cd60c
packages/cubejs-base-driver/src/BaseDriver.ts
@@ -805,7 +805,7 @@ export abstract class BaseDriver implements DriverInterface {
805
806
const csvFiles: string[] = [];
807
const containerClient = blobServiceClient.getContainerClient(container);
808
- const blobsList = containerClient.listBlobsFlat({ prefix: `${tableName}/` });
+ const blobsList = containerClient.listBlobsFlat({ prefix: `${tableName}` });
809
for await (const blob of blobsList) {
810
if (blob.name && (blob.name.endsWith('.csv.gz') || blob.name.endsWith('.csv'))) {
811
const starts = new Date();
0 commit comments