diff --git a/neutron/Chart.yaml b/neutron/Chart.yaml index 33c6a740c0..52214bef4d 100644 --- a/neutron/Chart.yaml +++ b/neutron/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Neutron name: neutron -version: 0.2.11 +version: 0.2.12 home: https://docs.openstack.org/neutron/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Neutron/OpenStack_Project_Neutron_vertical.png sources: diff --git a/neutron/templates/bin/_neutron-netns-cleanup-cron.py.tpl b/neutron/templates/bin/_neutron-netns-cleanup-cron.py.tpl index 5eb5b13773..a56e87d7c0 100644 --- a/neutron/templates/bin/_neutron-netns-cleanup-cron.py.tpl +++ b/neutron/templates/bin/_neutron-netns-cleanup-cron.py.tpl @@ -17,8 +17,10 @@ if __name__ == "__main__": sys.stderr.write( "Cleaning network namespaces caught an exception %s" % str(ex)) + time.sleep(30) except: sys.stderr.write( "Cleaning network namespaces caught an exception") + time.sleep(30) finally: cfg.CONF.clear() diff --git a/releasenotes/notes/neutron.yaml b/releasenotes/notes/neutron.yaml index 9c9acfd95e..a6a8d3346e 100644 --- a/releasenotes/notes/neutron.yaml +++ b/releasenotes/notes/neutron.yaml @@ -25,4 +25,5 @@ neutron: - 0.2.9 Add option to disable helm.sh/hook annotations - 0.2.10 Update htk requirements repo - 0.2.11 Improve health probe logging + - 0.2.12 Fix infinite recursion deadlock on netns cleanup cron ...