Merge pull request #1128 from zhangyuheng/fix/typo

fix: credential typo
This commit is contained in:
Sam Stoelinga 2020-03-17 11:26:36 -07:00 committed by GitHub
commit e1e6c55386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -43,12 +43,12 @@ func (b *AzureBlob) UnpackTarFromBuildContext() (string, error) {
return "", errors.New("AZURE_STORAGE_ACCESS_KEY environment variable is not set") return "", errors.New("AZURE_STORAGE_ACCESS_KEY environment variable is not set")
} }
// Get storage accoutname for Azure Blob Storage // Get storage accountName for Azure Blob Storage
u, _ := url.Parse(b.context) u, _ := url.Parse(b.context)
parts := azblob.NewBlobURLParts(*u) parts := azblob.NewBlobURLParts(*u)
accountName := strings.Split(parts.Host, ".")[0] accountName := strings.Split(parts.Host, ".")[0]
// Generate credentail with accountname and accountkey // Generate credential with accountName and accountKey
credential, err := azblob.NewSharedKeyCredential(accountName, accountKey) credential, err := azblob.NewSharedKeyCredential(accountName, accountKey)
if err != nil { if err != nil {
return parts.Host, err return parts.Host, err
@ -62,7 +62,7 @@ func (b *AzureBlob) UnpackTarFromBuildContext() (string, error) {
return tarPath, err return tarPath, err
} }
// Downloading contextfile from Azure Blob Storage // Downloading context file from Azure Blob Storage
p := azblob.NewPipeline(credential, azblob.PipelineOptions{}) p := azblob.NewPipeline(credential, azblob.PipelineOptions{})
blobURL := azblob.NewBlobURL(*u, p) blobURL := azblob.NewBlobURL(*u, p)
ctx := context.Background() ctx := context.Background()