ERR_STREAM_WRITE_AFTER_END #1690
-
How can I fix this issue in Adonis V5? // fix for adonis v4
async render ({ request, response }) {
response.implicitEnd = false
....
} // "response.implicitEnd" is not available in adonis v5
public async render (ctx: HttpContextContract) {
const { request, response } = ctx
response.implicitEnd = false
....
} |
Beta Was this translation helpful? Give feedback.
Answered by
thetutlage
Sep 30, 2020
Replies: 2 comments 4 replies
-
Not really an issue. We have removed |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
prab-it
-
@thetutlage Ok, I let you know if I can fix this with Promises and thanks for your time :) |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not really an issue. We have removed
implicitEnd
property from the response as there are no reasons for not using Promises