Merge pull request #121 from mnederlof/sandbox-decoder-output_limit-fix

Output limit needs to be an integer
diff --git a/heka/files/toml/decoder/sandbox.toml b/heka/files/toml/decoder/sandbox.toml
index d472a3d..b650ed3 100644
--- a/heka/files/toml/decoder/sandbox.toml
+++ b/heka/files/toml/decoder/sandbox.toml
@@ -14,7 +14,7 @@
 instruction_limit = "{{ decoder.instruction_limit }}"
 {%- endif %}
 {%- if decoder.output_limit is defined %}
-output_limit = "{{ decoder.output_limit }}"
+output_limit = {{ decoder.output_limit|int }}
 {%- endif %}
 
 {%- if decoder.config is defined or decoder.get('adjust_timezone', False) %}