-
Notifications
You must be signed in to change notification settings - Fork 646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
env.render() invokes the callback twice #1029
Comments
devoidfury
added a commit
to devoidfury/nunjucks
that referenced
this issue
Jan 8, 2018
devoidfury
added a commit
to devoidfury/nunjucks
that referenced
this issue
Jan 8, 2018
2 tasks
fdintino
added a commit
that referenced
this issue
Jan 15, 2018
Fix multiple callback calls, issue #1029
Not fully fixed! |
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Node: 6, 7
Nunjucks: 3.0.1
OS: Win 10x64
Under specific circumstances, when a templating error occurs the callback of the
.render()
method runs twice: one for the error and one more time returning an incomplete output. In the test case provided I took my project and reduced it to a minimum condition for this to happen. Just run it and the output should show something like thisHere the second callback run yelds a text, where it lacks
|- [<- import] map_elements:
after|- [<- includes] _register_auth:
fromhere
Further investigation has shown that if I unwrap this (if I remove the
if
check) - the whole construction starts to work as it should.This error may be a very circumstantial, but it is also very serious, since render callback often contains the
express
's.send()
method and it throws exception if you try to send the second time, potentially crashing the whole app, not just failing to render one page. If not caught that is...I tried to traceback it but some parts seem to be async and there is just too much VM noise so I loose the track of the callback after going like 20 steps deep into
.render()
The text was updated successfully, but these errors were encountered: