Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker/horizon/extend_start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ function settings_bundle {
tar -cf- --mtime=1970-01-01 \
/etc/openstack-dashboard/local_settings \
/etc/openstack-dashboard/custom_local_settings \
/etc/openstack-dashboard/local_settings.d 2> /dev/null || true
/etc/openstack-dashboard/local_settings.d \
/etc/openstack-dashboard/themes 2> /dev/null || true
}

function settings_changed {
Expand Down
10 changes: 4 additions & 6 deletions docker/rabbitmq/rabbitmq/healthcheck_rabbitmq
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

set -e

rabbitmq-diagnostics -t 5 -q ping || exit 1
rabbitmq-diagnostics -t 5 -q status || exit 1
rabbitmq-diagnostics -t 5 -q check_running || exit 1
rabbitmq-diagnostics -t 5 -q check_local_alarms || exit 1
rabbitmq-diagnostics -t 5 -q check_port_connectivity || exit 1
rabbitmq-diagnostics -t 5 -q check_virtual_hosts || exit 1
for check in ping status check_running check_local_alarms check_port_connectivity check_virtual_hosts; do
echo "Running rabbitmq-diagnostics $check"
rabbitmq-diagnostics -t 5 -q $check || (echo "ERROR: $check failed" && exit 1)
done
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
fixes:
- |
Fixed Horizon static asset regeneration for custom theme updates.
Changes under ``/etc/openstack-dashboard/themes`` now invalidate the
startup settings hash, so Horizon reruns ``collectstatic`` and
``compress`` after a restart or recreate.