Skip to content

Commit 7053590

Browse files
committed
Fix usage of the client sdk config in async mode
1 parent fa67977 commit 7053590

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/polyaxon/_client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def _get_client(self):
113113
def _get_internal_client(self):
114114
if self.is_async:
115115
return AsyncApiClient(
116-
self.config.internal_sdk_config, **self.config.get_internal_header()
116+
self.config.async_internal_sdk_config, **self.config.get_internal_header()
117117
)
118118
return ApiClient(
119119
self.config.internal_sdk_config, **self.config.get_internal_header()

0 commit comments

Comments
 (0)