Skip to content
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

Hook execution fails with response streaming enabled if connection is abandoned by client #4

Open
dikderoy opened this issue Sep 27, 2023 · 1 comment

Comments

@dikderoy
Copy link

Command execution stops with signal: broken pipe if the connection is abandoned/interrupted while the script is still executing

@dikderoy
Copy link
Author

need to track and suppress future writes & flushes on err here:

func (fw *flushWriter) Write(p []byte) (n int, err error) {
n, err = fw.w.Write(p)
if n > 0 {
fw.w.Flush()
}
return
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant