Allow testing a single hybrid instance like the good old days

This commit is contained in:
Alan Rominger 2021-10-13 16:36:14 -04:00 committed by Shane McDonald
parent 0d3a22bbc3
commit 6f20a798ab
No known key found for this signature in database
GPG Key ID: 6F374AF6E9EB9374

View File

@ -113,4 +113,5 @@
src: "receptor-worker.conf.j2"
dest: "{{ sources_dest }}/receptor/receptor-worker-{{ item }}.conf"
mode: '0600'
with_sequence: start=1 end={{ execution_node_count }}
with_sequence: start=1 end={{ execution_node_count if execution_node_count | int > 0 else 1}}
when: execution_node_count | int > 0