-
Notifications
You must be signed in to change notification settings - Fork 62
Closed
Labels
bugThis issue requires a change to an existing behavior in the product in order to be resolved.This issue requires a change to an existing behavior in the product in order to be resolved.p0
Description
self.credential_scopes = ['https://management.azure.com/.default']
self.credential_scopes.extend(kwargs.pop('credential_scopes', []))
should be:
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
See Azure/azure-sdk-for-python#12947 for details
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugThis issue requires a change to an existing behavior in the product in order to be resolved.This issue requires a change to an existing behavior in the product in order to be resolved.p0