Revert "Save/restore paused status in decorator to prevent functions like config-changed from overwriting it"

This commit is contained in:
Corey Bryant
2015-10-13 08:06:09 -04:00
parent 7ca06961b9
commit 13cc6913ff

View File

@@ -1001,11 +1001,7 @@ def pause_aware_restart_on_change(restart_map):
"""Avoids restarting services if config changes when unit is paused."""
def wrapper(f):
if is_paused():
# save/restore paused status in case called function changes it
status, message = status_get()
ret = f
status_set(status, message)
return ret
return f
else:
return restart_on_change(restart_map)(f)
return wrapper