issue #570: add firewalld to always-fork list for now.
This commit is contained in:
parent
7ffed6f6dc
commit
34fb9da1be
|
@ -296,6 +296,7 @@ class NewStylePlanner(ScriptPlanner):
|
||||||
#: manner.
|
#: manner.
|
||||||
ALWAYS_FORK_MODULES = frozenset([
|
ALWAYS_FORK_MODULES = frozenset([
|
||||||
'dnf', # issue #280; py-dnf/hawkey need therapy
|
'dnf', # issue #280; py-dnf/hawkey need therapy
|
||||||
|
'firewalld', # issue #570: ansible module_utils caches dbus conn
|
||||||
])
|
])
|
||||||
|
|
||||||
def should_fork(self):
|
def should_fork(self):
|
||||||
|
|
|
@ -27,13 +27,18 @@ Fixes
|
||||||
* `#557 <https://github.com/dw/mitogen/issues/557>`_: fix a crash when running
|
* `#557 <https://github.com/dw/mitogen/issues/557>`_: fix a crash when running
|
||||||
on machines with high CPU counts.
|
on machines with high CPU counts.
|
||||||
|
|
||||||
|
* `#570 <https://github.com/dw/mitogen/issues/570>`_: the ``firewalld`` module
|
||||||
|
internally caches a dbus name that changes across ``firewalld`` restarts,
|
||||||
|
causing a failure if the service is restarted between ``firewalld`` module invocations.
|
||||||
|
|
||||||
|
|
||||||
Thanks!
|
Thanks!
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
Mitogen would not be possible without the support of users. A huge thanks for
|
Mitogen would not be possible without the support of users. A huge thanks for
|
||||||
bug reports, testing, features and fixes in this release contributed by
|
bug reports, testing, features and fixes in this release contributed by
|
||||||
`Orion Poplawski <https://github.com/opoplawski>`_.
|
`Orion Poplawski <https://github.com/opoplawski>`_, and
|
||||||
|
`@Moumoutaru <https://github.com/Moumoutaru>`_.
|
||||||
|
|
||||||
|
|
||||||
v0.2.6 (2019-03-06)
|
v0.2.6 (2019-03-06)
|
||||||
|
|
Loading…
Reference in New Issue