Top "Broken-pipe" questions

Broken pipe is a general term for when a process is unable to output to a socket or pipe due to no process reading from the other end of the pipe.

What causes the Broken Pipe Error?

I know that broken pipe error is thrown when the socket on the peer side is closed. But, in my …

c broken-pipe
How to prevent errno 32 broken pipe?

Currently I am using an app built in python. When I run it in personal computer, it works without problems. …

python broken-pipe
How to prevent SIGPIPEs (or handle them properly)

I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command …

c io signals broken-pipe sigpipe
How to handle a broken pipe (SIGPIPE) in python?

I've written a simple multi-threaded game server in python that creates a new thread for each client connection. I'm finding …

python python-2.x broken-pipe
Django Broken pipe in Debug mode

I have django 1.3 on the remote server behind Nginx. If I run django with apache + mod_wsgi, I can watch …

django broken-pipe
How to prevent BrokenPipeError when doing a flush in Python?

Question: Is there a way to use flush=True for the print() function without getting the BrokenPipeError? I have a …

python unix python-3.x flush broken-pipe
Broken pipe when pushing to git repository

I'm trying to push for the first time a code to my git repository but i get the following error: …

git push bitbucket broken-pipe
Python socket.send() can only send once, then socket.error: [Errno 32] Broken pipe occurred

I'm a newbie in network programming, so please forgive me if this is a dumb question :) I created 1 client and 1 …

python socketserver broken-pipe
error: [Errno 32] Broken pipe

I am working on a Django project. All went well till I created an Ajax request to send values from …

python django python-2.7 broken-pipe
How to avoid a Broken Pipe error when printing a large amount of formatted data?

I am trying to print a list of tuples formatted in my stdout. For this, I use the str.format …

python format string-formatting ioerror broken-pipe