We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3a2f98 commit dff7303Copy full SHA for dff7303
ydb/credentials.py
@@ -45,6 +45,9 @@ def get_auth_token(self) -> str:
45
return token
46
return ""
47
48
+ def _update_driver_config(self, driver_config):
49
+ pass
50
+
51
52
class OneToManyValue(object):
53
def __init__(self):
ydb/driver.py
@@ -234,8 +234,7 @@ def get_config(
234
235
driver_config._update_attrs_by_kwargs(**kwargs)
236
237
- if isinstance(driver_config.credentials, credentials_impl.StaticCredentials):
238
- driver_config.credentials._update_driver_config(driver_config)
+ driver_config.credentials._update_driver_config(driver_config)
239
240
return driver_config
241
0 commit comments