File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ Common Changes
36
36
(`issue 493 <https://github.com/oracle/python-oracledb/issues/493 >`__).
37
37
#) Miscellaneous grammar and spelling fixes by John Bampton
38
38
(`PR 479 <https://github.com/oracle/python-oracledb/pull/479 >`__).
39
+ #) Fixed parsing of the connection string in the
40
+ :ref: `Azure App Centralized Configuration Provider
41
+ <azureappstorageprovider>`.
39
42
#) Fixed memory corruption in DataFrame queries
40
43
(`issue 489 <https://github.com/oracle/python-oracledb/issues/489 >`__).
41
44
#) Added support for converting an OracleDataFrame object to a foreign data
Original file line number Diff line number Diff line change @@ -188,9 +188,10 @@ def _parse_parameters(protocol_arg: str) -> dict:
188
188
parameters = {
189
189
key .lower (): value [0 ] for key , value in parsed_values .items ()
190
190
}
191
- parameters ["appconfigname" ] = (
192
- protocol_arg [:pos ].rstrip ("/" ).rstrip (".azconfig.io" ) + ".azconfig.io"
193
- )
191
+ config_name = protocol_arg [:pos ].rstrip ("/" )
192
+ if not config_name .endswith (".azconfig.io" ):
193
+ config_name += ".azconfig.io"
194
+ parameters ["appconfigname" ] = config_name
194
195
return parameters
195
196
196
197
You can’t perform that action at this time.
0 commit comments