Skip to content

Commit

Permalink
Fixate the order of execution by the step name
Browse files Browse the repository at this point in the history
  • Loading branch information
fkantelberg committed Feb 13, 2024
1 parent 050b6cb commit 643c756
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/doblib/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.17.1"
VERSION = "0.17.2"
2 changes: 1 addition & 1 deletion src/doblib/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def apply_action(self, args=None):
utils.info(f"Running {args.action}")
with self._manage():
with self.env(db_name, rollback=args.dry_run) as env:
for name, item in actions[args.action].items():
for name, item in sorted(actions[args.action].items()):
if not item.get("enable", True):
continue

Expand Down

0 comments on commit 643c756

Please sign in to comment.