Skip to content
Snippets Groups Projects
Commit 0b62db7c authored by Stanislav Dmitriev's avatar Stanislav Dmitriev
Browse files

Set scheduler.max_attempts for nova conductor

In order to honour configured max number of attempts
it has to be presented in nova.conf inside of
nova_conductor container, otherwise the default value
of 3 will be used

Closes-Bug: #2003587
Change-Id: I928af332b8658223444594f96417830233057284
parent 5ca408f8
No related branches found
No related tags found
No related merge requests found
...@@ -205,6 +205,11 @@ helper_command=sudo nova-rootwrap /etc/nova/rootwrap.conf privsep-helper --confi ...@@ -205,6 +205,11 @@ helper_command=sudo nova-rootwrap /etc/nova/rootwrap.conf privsep-helper --confi
[guestfs] [guestfs]
debug = {{ nova_logging_debug }} debug = {{ nova_logging_debug }}
{% if service_name == 'nova-conductor' %}
[scheduler]
max_attempts = 10
{% endif %}
[placement] [placement]
auth_type = password auth_type = password
auth_url = {{ keystone_internal_url }} auth_url = {{ keystone_internal_url }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment