ran gofmt on the file that was changed

This commit is contained in:
Bhaskar Brahma 2019-10-22 16:47:36 -07:00
Родитель 6a01fb0c8e
Коммит f26173908f
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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