Skip to content

Commit

Permalink
Merge pull request #197 from chdevala/master
Browse files Browse the repository at this point in the history
change management endpoint
  • Loading branch information
chdevala authored Sep 22, 2017
2 parents 106596a + 0c7ed3f commit 0742d8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion azure/datalake/store/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def auth(tenant_id=None, username=None,
client_secret : str
the secret associated with the client_id
resource : str
resource for auth (e.g., https://management.core.windows.net/)
resource for auth (e.g., https://datalake.azure.net/)
require_2fa : bool
indicates this authentication attempt requires two-factor authentication
authority: string
Expand Down
4 changes: 2 additions & 2 deletions tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
access=str(base64.b64encode(os.urandom(1420))),
refresh=str(base64.b64encode(os.urandom(718))),
time=time.time(), client='common',
resource="https://management.core.windows.net/",
resource="https://datalake.azure.net/",
tenant=TENANT_ID, expiresIn=3600,
tokenType='Bearer'))
SUBSCRIPTION_ID = fake_settings.SUBSCRIPTION_ID
Expand All @@ -42,7 +42,7 @@
secret=str(base64.b64encode(os.urandom(1420))),
refresh=None,
time=time.time(),
resource="https://management.core.windows.net/",
resource="https://datalake.azure.net/",
tenant=TENANT_ID, expiresIn=3600,
tokenType='Bearer'))
else:
Expand Down

0 comments on commit 0742d8d

Please sign in to comment.