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 a9cd60c commit 60ed486Copy full SHA for 60ed486
packages/cubejs-base-driver/src/BaseDriver.ts
@@ -751,7 +751,8 @@ export abstract class BaseDriver implements DriverInterface {
751
bucketName: string,
752
tableName: string
753
): Promise<string[]> {
754
- const parts = bucketName.split('.blob.core.windows.net/');
+ const splitter = bucketName.includes('blob.core') ? '.blob.core.windows.net/' : '.dfs.core.windows.net/';
755
+ const parts = bucketName.split(splitter);
756
const account = parts[0];
757
const container = parts[1].split('/')[0];
758
let credential: StorageSharedKeyCredential | DefaultAzureCredential;
0 commit comments