From f26173908f6dce8d50ff8d86b126e2a8493c99c0 Mon Sep 17 00:00:00 2001 From: Bhaskar Brahma Date: Tue, 22 Oct 2019 16:47:36 -0700 Subject: [PATCH] ran gofmt on the file that was changed --- pkg/download/blobwithmsitoken.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/download/blobwithmsitoken.go b/pkg/download/blobwithmsitoken.go index cca2dde..a5f59b5 100644 --- a/pkg/download/blobwithmsitoken.go +++ b/pkg/download/blobwithmsitoken.go @@ -60,8 +60,8 @@ func GetMsiProviderForStorageAccountsImplicitly(blobUri string) MsiProvider { return func() (msi.Msi, error) { msi, err := msiProvider.GetMsiForResource(GetResourceNameFromBlobUri(blobUri)) if err != nil { - return msi, fmt.Errorf("Unable to get managed identity. "+ - "Please make sure that system assigned managed identity is enabled on the VM "+ + return msi, fmt.Errorf("Unable to get managed identity. " + + "Please make sure that system assigned managed identity is enabled on the VM " + "or user assigned identity is added to the system.") } return msi, nil