Revert "Correctly catch template errors without returning invalid data"
This reverts commit 3cd7d47b7e
.
This commit is contained in:
parent
e6f6a73328
commit
d1753046e0
1 changed files with 0 additions and 2 deletions
|
@ -316,8 +316,6 @@ def template_from_string(basedir, data, vars, fail_on_undefined=False):
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
if 'recursion' in str(e):
|
if 'recursion' in str(e):
|
||||||
raise errors.AnsibleError("recursive loop detected in template string: %s" % data)
|
raise errors.AnsibleError("recursive loop detected in template string: %s" % data)
|
||||||
elif isinstance(e, TemplateSyntaxError):
|
|
||||||
raise errors.AnsibleError("there was an error in the template: %s" % data)
|
|
||||||
else:
|
else:
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue