Skip to content

Commit 9b63015

Browse files
authored
Merge pull request #203 from stackhpc/fix/mpi-conf-template
Fix mpi.conf templating
2 parents 98f978f + 8a42ebc commit 9b63015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/mpi.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# {{ ansible_managed }}
2-
{% for k, v in openhpc_mpi_config.items %}
2+
{% for k, v in openhpc_mpi_config.items() %}
33
{% if v != "omit" %}{# allow removing items using setting key: omit #}
44
{{ k }}={{ v | join(',') if (v is sequence and v is not string) else v }}
55
{% endif %}

0 commit comments

Comments
 (0)