Skip to content

Commit

Permalink
Fix credstore_env parameter in docker.from_env
Browse files Browse the repository at this point in the history
Signed-off-by: மனோஜ்குமார் பழனிச்சாமி <[email protected]>
  • Loading branch information
SmartManoj committed Feb 28, 2025
1 parent db7f8b8 commit 4edef22
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,13 @@ def from_env(cls, **kwargs):
timeout = kwargs.pop('timeout', DEFAULT_TIMEOUT_SECONDS)
max_pool_size = kwargs.pop('max_pool_size', DEFAULT_MAX_POOL_SIZE)
version = kwargs.pop('version', None)
credstore_env = kwargs.pop('credstore_env', None)
use_ssh_client = kwargs.pop('use_ssh_client', False)
return cls(
timeout=timeout,
max_pool_size=max_pool_size,
version=version,
credstore_env=credstore_env,
use_ssh_client=use_ssh_client,
**kwargs_from_env(**kwargs)
)
Expand Down

0 comments on commit 4edef22

Please sign in to comment.