Skip to content

Commit

Permalink
Replace stop --timeout with --time
Browse files Browse the repository at this point in the history
  • Loading branch information
manics committed Mar 2, 2024
1 parent 48ac4c4 commit 18c2b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo2podman/podman.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def remove(self):

def stop(self, *, timeout=10):
lines = exec_podman(
["stop", "--timeout", str(timeout), self.id],
["stop", "--time", str(timeout), self.id],
capture="stdout",
exe=self._podman_executable,
)
Expand Down

0 comments on commit 18c2b49

Please sign in to comment.