Merge "Do not start swift-object-updater on stop"

This commit is contained in:
Zuul 2020-12-16 09:36:42 +00:00 committed by Gerrit Code Review
commit 75b622aeab
2 changed files with 7 additions and 1 deletions

View File

@ -123,7 +123,7 @@
- name: Stopping swift-object-updater container - name: Stopping swift-object-updater container
become: true become: true
kolla_docker: kolla_docker:
action: "start_container" action: "stop_container"
common_options: "{{ docker_common_options }}" common_options: "{{ docker_common_options }}"
name: "swift_object_updater" name: "swift_object_updater"
when: when:

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes Swift's stop action. It will no longer try to start
``swift-object-updater`` container again.
`LP#1906944 <https://launchpad.net/bugs/1906944>`__