Skip to content

Commit

Permalink
Merge pull request #162 from ChameleonCloud/bugfix/missing_bool
Browse files Browse the repository at this point in the history
Add missing bool filter in horizon config
  • Loading branch information
Mark-Powers authored Feb 28, 2022
2 parents 1191cef + 4662279 commit 90604fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kolla/node_custom_config/horizon/custom_local_settings
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ OPENSTACK_BLAZAR_FLOATINGIP_RESERVATION = {
}
{% endif %}
OPENSTACK_BLAZAR_DEVICE_RESERVATION = {
'enabled': {{ enable_zun }},
'enabled': {{ enable_zun | bool }},
}
OPENSTACK_BLAZAR_HOST_RESERVATION = {
'enabled': {{ enable_nova }},
'enabled': {{ enable_nova | bool }},
}
# Used for Blazar dashboard, which needs to pull data from the MySQL database
# directly at the moment.
Expand Down

0 comments on commit 90604fa

Please sign in to comment.