Commit d1131b8a by brianhw Committed by GitHub

Merge pull request #3406 from edx/brian/fix-hadoop-log-agg

Fix typo in yarn-site.xml template.
parents 4effd3c6 44a01344
......@@ -10,10 +10,10 @@
{% if mapred_site_config is defined %}
{% for key,value in mapred_site_config.iteritems() %}
<property>
<name>{{ key }}}</name>
<name>{{ key }}</name>
<value>{{ value }}</value>
</property>
{% endfor %}
{% endif %}
</configuration>
\ No newline at end of file
</configuration>
......@@ -14,10 +14,10 @@
{% if yarn_site_config is defined %}
{% for key,value in yarn_site_config.iteritems() %}
<property>
<name>{{ key }}}</name>
<name>{{ key }}</name>
<value>{{ value }}</value>
</property>
{% endfor %}
{% endif %}
</configuration>
\ No newline at end of file
</configuration>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment