File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ def create_signer(
416
416
>>> auth = ads.auth.create_signer(auth_type="security_token", config=config) # security token authentication created based on provided config
417
417
"""
418
418
if signer or signer_callable :
419
- configuration = ads .telemetry .update_oci_client_config ()
419
+ configuration = ads .telemetry .update_oci_client_config (config )
420
420
if signer_callable :
421
421
signer = signer_callable (** signer_kwargs )
422
422
signer_dict = {
@@ -479,7 +479,7 @@ def default_signer(client_kwargs: Optional[Dict] = None) -> Dict:
479
479
"""
480
480
auth_state = AuthState ()
481
481
if auth_state .oci_signer or auth_state .oci_signer_callable :
482
- configuration = ads .telemetry .update_oci_client_config ()
482
+ configuration = ads .telemetry .update_oci_client_config (auth_state . oci_config )
483
483
signer = auth_state .oci_signer
484
484
if auth_state .oci_signer_callable :
485
485
signer_kwargs = auth_state .oci_signer_kwargs or {}
You can’t perform that action at this time.
0 commit comments