Skip to content

Commit 036eeb8

Browse files
authored
{serviceconnector-passwordless}: Fix argument missing (#8259)
* Fix argument missing * update azure-mgmt-servicelinker
1 parent f3e0083 commit 036eeb8

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

src/serviceconnector-passwordless/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
33
Release History
44
===============
5+
3.1.3
6+
++++++
7+
* Fix argument missing
8+
59
3.1.2
610
++++++
711
* Update dependencies

src/serviceconnector-passwordless/azext_serviceconnector_passwordless/_credential_free.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
}
4343

4444

45-
# pylint: disable=line-too-long, consider-using-f-string, too-many-statements
45+
# pylint: disable=line-too-long, consider-using-f-string, too-many-statements, unused-argument
4646
# For db(mysqlFlex/psql/psqlFlex/sql) linker with auth type=systemAssignedIdentity, enable Microsoft Entra auth and create db user on data plane
4747
# For other linker, ignore the steps
4848
def get_enable_mi_for_db_linker_func(yes=False, new=False):
49-
def enable_mi_for_db_linker(cmd, source_id, target_id, auth_info, client_type, connection_name):
49+
def enable_mi_for_db_linker(cmd, source_id, target_id, auth_info, client_type, connection_name, *args, **kwargs):
5050
# return if connection is not for db mi
5151
if auth_info['auth_type'] not in [AUTHTYPES[AUTH_TYPE.SystemIdentity],
5252
AUTHTYPES[AUTH_TYPE.UserIdentity],

src/serviceconnector-passwordless/azext_serviceconnector_passwordless/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# --------------------------------------------------------------------------------------------
55

66

7-
VERSION = '3.1.2'
7+
VERSION = '3.1.3'
88
NAME = 'serviceconnector-passwordless'

src/serviceconnector-passwordless/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
logger.warn("Wheel is not available, disabling bdist_wheel hook")
1616

1717

18-
VERSION = '3.1.2'
18+
VERSION = '3.1.3'
1919
try:
2020
from azext_serviceconnector_passwordless.config import VERSION
2121
except ImportError:
@@ -40,7 +40,7 @@
4040
'PyMySQL==1.1.1',
4141
'pyodbc==5.1.0',
4242
'psycopg2-binary==2.9.9',
43-
'azure-mgmt-servicelinker==1.2.0b2'
43+
'azure-mgmt-servicelinker==1.2.0b3'
4444
]
4545

4646
with open('README.rst', 'r', encoding='utf-8') as f:

0 commit comments

Comments
 (0)