Message ID | 20170616175704.7832-14-anthony.perard@citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Anthony PERARD writes ("[OSSTEST PATCH v11 13/20] ts-openstack-deploy: Apply a Tempest patch"): > Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> > ts-openstack-deploy | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/ts-openstack-deploy b/ts-openstack-deploy > index 04317a0..04053de 100755 > --- a/ts-openstack-deploy > +++ b/ts-openstack-deploy > @@ -144,6 +144,16 @@ END > <<END, "/etc/rabbitmq/rabbitmq.config"); > [{rabbit, [{vm_memory_high_watermark, 0.8}]}]. > END > + > + # Apply https://review.openstack.org/449695/ to tempest to workaround an > + # issue. Check comments for more information > + target_cmd($ho, <<END, 120); > +set -e > +cd $builddir/tempest > +git fetch origin refs/changes/95/449695/1 > +git cherry-pick FETCH_HEAD > +END I foresee the need to generalise this... Ian.
diff --git a/ts-openstack-deploy b/ts-openstack-deploy index 04317a0..04053de 100755 --- a/ts-openstack-deploy +++ b/ts-openstack-deploy @@ -144,6 +144,16 @@ END <<END, "/etc/rabbitmq/rabbitmq.config"); [{rabbit, [{vm_memory_high_watermark, 0.8}]}]. END + + # Apply https://review.openstack.org/449695/ to tempest to workaround an + # issue. Check comments for more information + target_cmd($ho, <<END, 120); +set -e +cd $builddir/tempest +git fetch origin refs/changes/95/449695/1 +git cherry-pick FETCH_HEAD +END + } sub deploy() {
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- ts-openstack-deploy | 10 ++++++++++ 1 file changed, 10 insertions(+)