Skip to content

Commit cf67a93

Browse files
authored
Resource url fix (microsoft#2408)
1 parent 848dba0 commit cf67a93

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tools/paconn-cli/paconn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Initializer
99
"""
1010

11-
__VERSION__ = '0.0.20'
11+
__VERSION__ = '0.0.21'
1212
__CLI_NAME__ = 'paconn'
1313

1414
# Commands

tools/paconn-cli/paconn/settings/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ def __init__(
5454
self.client_id = client_id or '04b07795-8ddb-461a-bbee-02f9e1bf7b46'
5555
self.tenant = tenant or 'common'
5656
self.authority_url = authority_url or 'https://login.microsoftonline.com/'
57-
self.resource = resource or 'https://management.core.windows.net/'
57+
self.resource = resource or 'https://service.powerapps.com/'

tools/paconn-cli/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import os
1010
from setuptools import setup
1111

12-
__VERSION__ = '0.0.20'
12+
__VERSION__ = '0.0.21'
1313

1414

1515
def read(fname):

0 commit comments

Comments
 (0)