brianloss commented on a change in pull request #426:
URL: https://github.com/apache/fluo-muchos/pull/426#discussion_r781484419
##########
File path: ansible/roles/accumulo/templates/accumulo-cluster-systemd
##########
@@ -75,6 +75,7 @@ function verify_config {
fi
fi
+{% if accumulo_version is version('2.1.0','<') %}
Review comment:
I'm not a jinja expert, and this would totally be a nit, but you can
specify a dash after the begin and or before the close. That will remove
whitespace. A pattern I've seen before is something like:
```
{%- some jinja conditional %}
stuff
{% end -%}
```
The only difference this would make is how clean the file looks after it's
been run through the template engine.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]