We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dc6ba0 commit 2b3a58aCopy full SHA for 2b3a58a
libioc/Jail.py
@@ -763,14 +763,15 @@ def _start_dependant_jails(
763
yield jailDependantsStartEvent.skip("No dependant jails")
764
return
765
766
+ _sort = lambda x: x.config["priority"]
767
dependant_jails = sorted(
768
libioc.Jails.JailsGenerator(
769
filters=_depends,
770
host=self.host,
771
logger=self.logger,
772
zfs=self.zfs
773
),
- key=lambda x: x.config["priority"]
774
+ key=_sort
775
)
776
777
for dependant_jail in dependant_jails:
0 commit comments