forked from openstack/kolla-ansible
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #499 from stackhpc/upstream/yoga-2023-12-04
Synchronise yoga with upstream
- Loading branch information
Showing
4 changed files
with
14 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
--- | ||
- name: Stop the RabbitMQ application | ||
become: true | ||
command: "{{ kolla_container_engine }} exec rabbitmq rabbitmqctl stop_app" | ||
command: "docker exec rabbitmq rabbitmqctl stop_app" | ||
|
||
- name: Reset the state of RabbitMQ | ||
become: true | ||
command: "{{ kolla_container_engine }} exec rabbitmq rabbitmqctl force_reset" | ||
command: "docker exec rabbitmq rabbitmqctl force_reset" | ||
|
||
- name: Start the RabbitMQ application | ||
become: true | ||
command: "{{ kolla_container_engine }} exec rabbitmq rabbitmqctl start_app" | ||
command: "docker exec rabbitmq rabbitmqctl start_app" | ||
|
||
- name: Wait for all RabbitMQ nodes to join the cluster | ||
become: true | ||
command: "{{ kolla_container_engine }} exec rabbitmq rabbitmqctl await_online_nodes {{ groups['rabbitmq'] | length }}" | ||
command: "docker exec rabbitmq rabbitmqctl await_online_nodes {{ groups['rabbitmq'] | length }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixes an issue where Fluentd was parsing Horizon WSGI application logs | ||
incorrectly. | ||
Horizon error logs are now written to ``horizon-error.log`` instead of | ||
``horizon.log``. | ||
See `LP#1898174 <https://bugs.launchpad.net/kolla-ansible/+bug/1898174>`__ |