Skip to content

Commit

Permalink
domain/ipam.py: fix default value of ipam driver
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Tluka <[email protected]>
  • Loading branch information
jtluka committed Sep 18, 2024
1 parent 86fbf29 commit 71e53c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podman/domain/ipam.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class IPAMConfig(dict):

def __init__(
self,
driver: Optional[str] = "default",
driver: Optional[str] = "host-local",
pool_configs: Optional[List[IPAMPool]] = None,
options: Optional[Mapping[str, Any]] = None,
):
Expand Down

0 comments on commit 71e53c7

Please sign in to comment.