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 c45f1ad commit ae9f693Copy full SHA for ae9f693
Snowflake.Data/Core/FileTransfer/StorageClient/SFGCSClient.cs
@@ -91,7 +91,7 @@ private Google.Cloud.Storage.V1.StorageClient BuildStorageClient(StorageClientBu
91
{
92
var gcsCustomEndpoint = stageInfo.GcsCustomEndpoint();
93
if (!string.IsNullOrEmpty(gcsCustomEndpoint))
94
- builder.BaseUri = gcsCustomEndpoint;
+ builder.BaseUri = gcsCustomEndpoint.StartsWith("https://") ? gcsCustomEndpoint : "https://" + gcsCustomEndpoint;
95
return builder.Build();
96
}
97
0 commit comments