Patch nova to fix functest issue 55/64655/2
authorHarry Huang <huangxiangyu5@huawei.com>
Wed, 7 Nov 2018 12:20:17 +0000 (20:20 +0800)
committerHarry Huang <huangxiangyu5@huawei.com>
Wed, 7 Nov 2018 12:22:17 +0000 (20:22 +0800)
JIRA:-

Change-Id: Ia10c35e5feb91200fba61ba36d76555f53babe18
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
deploy/adapters/ansible/roles/post-openstack/files/manager.py.patch [new file with mode: 0644]
deploy/adapters/ansible/roles/post-openstack/tasks/main.yml
deploy/adapters/ansible/roles/post-openstack/tasks/nova_patch.yml [new file with mode: 0755]

diff --git a/deploy/adapters/ansible/roles/post-openstack/files/manager.py.patch b/deploy/adapters/ansible/roles/post-openstack/files/manager.py.patch
new file mode 100644 (file)
index 0000000..2adaa4f
--- /dev/null
@@ -0,0 +1,12 @@
+--- manager.py 2018-11-07 03:51:22.764685289 -0800
++++ manager.py.new     2018-11-07 03:58:21.014139558 -0800
+@@ -314,8 +314,7 @@
+         if self._events is None:
+             # NOTE(danms): We really should have a more specific error
+             # here, but this is what we use for our default error case
+-            raise exception.NovaException('In shutdown, no new events '
+-                                          'can be scheduled')
++            pass
+
+         @utils.synchronized(self._lock_name(instance))
+         def _create_or_get_event():
index 0bd9aef..4a59b75 100644 (file)
@@ -53,7 +53,6 @@
   when:
     - inventory_hostname == groups['utility_all'][0]
 
-
 - name: fetch openrc
   fetch:
     src: /root/openrc
@@ -86,3 +85,7 @@
     state: restarted
   when:
     - inventory_hostname in groups['horizon']
+
+- include: nova_patch.yml
+  when:
+    - inventory_hostname in groups['compute']
diff --git a/deploy/adapters/ansible/roles/post-openstack/tasks/nova_patch.yml b/deploy/adapters/ansible/roles/post-openstack/tasks/nova_patch.yml
new file mode 100755 (executable)
index 0000000..8a35ab6
--- /dev/null
@@ -0,0 +1,23 @@
+#############################################################################
+# Copyright (c) 2018 HUAWEI TECHNOLOGIES CO.,LTD and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+---
+- name: copy manager.py.patch
+  copy:
+    src: manager.py.patch
+    dest: /openstack/venvs/nova-{{ openstack_release }}/lib/python2.7/site-packages/nova/compute
+
+- name: patch manager.py.patch
+  shell:
+    patch -p0 < manager.py.patch
+  args:
+    chdir: /openstack/venvs/nova-{{ openstack_release }}/lib/python2.7/site-packages/nova/compute
+
+- name: restart nova-compute
+  shell:
+    systemctl restart nova-compute