diff --git a/hooks/cinder_hooks.py b/hooks/cinder_hooks.py index eb479be..c7c2fd2 100755 --- a/hooks/cinder_hooks.py +++ b/hooks/cinder_hooks.py @@ -262,6 +262,12 @@ def post_series_upgrade(): clear_unit_upgrading() +@hooks.hook('update-status') +def dummy_update_status(): + """Dummy function to silence missing hook log entry""" + pass + + if __name__ == '__main__': try: hooks.execute(sys.argv)