broken-pipe Questions
10
I'm trying to push for the first time a code to my git repository but i get the following error:
Counting objects: 222026, done.
Compressing objects: 100% (208850/208850), done.
Write failed: B...
Deitz asked 1/10, 2013 at 15:24
7
Solved
Currently I am using an app built in python. When I run it in personal computer, it works without problems.
However, when I move it into a production server. It keeps showing me the error attache...
Whisky asked 8/8, 2012 at 14:31
4
Solved
I created a git repo locally. When I try to push to github, I get:
Warning: Permanently added the RSA host key for IP address '140.82.112.4' to the list of known hosts.
Enumerating objects: 47, don...
Allhallowmas asked 11/5, 2021 at 21:20
6
Solved
I know that broken pipe error is thrown when the socket on the peer side is closed.
But, in my test I have noted that an immediate 'send' call on this side when the peer side is closed doesn't alw...
Preference asked 3/1, 2011 at 13:39
1
I run to issue that Celery worker connection with Rabbitmq met broken pipe error IN Gevent Mode. While no problem when Celery worker work in Process pool mode (without gevent without monkey patch)....
Technician asked 9/8, 2016 at 1:25
12
Solved
I have django 1.3 on the remote server behind Nginx.
If I run django with apache + mod_wsgi, I can watch errors in apache log files. It's ok but I'd like to have in console.
If I run django own ...
Liston asked 27/10, 2011 at 7:7
2
Solved
I have to send a dynamic buffer size to the socket stream.
It works correctly, but when I try to send multiple buffers with a size
bigger than
int my_buffer_size =18 * 1024; (this is an indicativ...
Ablative asked 5/1, 2015 at 21:52
2
When I log into my command line mysql I can no longer access any PHP application that requires a database connection. This happens every time. The steps to cause the issue on my localhost:
Command...
Sosthenna asked 20/3, 2015 at 14:51
8
Solved
Question: Is there a way to use flush=True for the print() function without getting the BrokenPipeError?
I have a script pipe.py:
for i in range(4000):
print(i)
I call it like this from a Unix...
Silesia asked 1/11, 2014 at 19:27
2
I have a server application which received requests and forwards them on a Unix Domain Socket. This works perfectly under reasonable usage but when I am doing some load tests with a few thousand re...
Gorget asked 15/4, 2012 at 16:17
1
Solved
I have this trace in rust :
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 32)', library/std/src/io/stdio.rs:993:9
stack backtrace:
0: 0x559ffa959dc0 - std::backtrace...
Aerograph asked 16/1, 2021 at 23:39
1
I've got a flask app running under gunicorn which handles client requests via REST api with an extremely CPU-intensive backend; some requests take minutes to respond to.
But that creates its own p...
Gilbreath asked 12/11, 2018 at 18:59
3
I use flask and peewee. Sometimes peewee throws this error
MySQL server has gone away (error(32, 'Broken pipe'))
Peewee database connection
db = PooledMySQLDatabase(database,**{
"passwd": pass...
Lorola asked 2/12, 2015 at 8:40
3
Solved
I am using some EC2 instances to run some large jobs I can not run locally. The issue I am seeing is that after a while (X hours since the process started) my connection on my shell gives me a brok...
Tantalizing asked 19/12, 2012 at 0:14
3
Solved
I'm getting an error returned from an io.Copy call, to which I've passed a socket (TCPConn) as the destination. It's expected that the remote host will simply drop the connection when they've had e...
Adeliaadelice asked 12/6, 2012 at 19:42
2
Solved
I am running some scripts with commands having cat pipelined with grep like:
cat file.txt | grep "pattern"
Most of the times there are no problems. But sometimes I get below error:
cat: write...
Bingham asked 5/4, 2018 at 5:47
3
Solved
I'am using a EC2 instance to run a large job that I estimate to take approx 24 hours to complete. I get the same issue described here ssh broken pipe ec2
I followed the suggestion/solutions in the...
Uterine asked 13/6, 2016 at 18:5
1
Solved
I'm using a clustered Airflow environment where I have four AWS ec2-instances for the servers.
ec2-instances
Server 1: Webserver, Scheduler, Redis Queue, PostgreSQL Database
Server 2: Webserver
...
Phenolic asked 16/7, 2018 at 16:1
0
I'm training a few Keras models one after the other on a remote server using userdocker. I connect to the server through ssh and let them run on different Screens.
To speed things up I had the mod...
Uturn asked 18/6, 2018 at 9:19
5
Solved
I've written a simple multi-threaded game server in python that creates a new thread for each client connection. I'm finding that every now and then, the server will crash because of a broken-pipe/...
Howl asked 7/10, 2008 at 19:53
4
Solved
I am trying to print a list of tuples formatted in my stdout. For this, I use the str.format method. Everything works fine, but when I pipe the output to see the
first lines using the head command ...
Conflux asked 3/4, 2013 at 17:18
1
Solved
When I run this script I recieve an error message with: "sort: write failed: standard output: Broken pipe"
If someone can help me it would be awesome, I am going crazy with this error
the i...
Benefactress asked 13/9, 2017 at 16:31
0
I'm using spring-boot-starter-websocket with Spring Boot 1.5.3.RELEASE. I get tons of logs when sockjs is trying to perform a heartbeat task. Somehow the connection is lost in the way. This article...
Cowie asked 11/7, 2017 at 4:30
2
Solved
I am working on a Django project. All went well till I created an Ajax request to send values from the html page to the backend (views.py).
When I send the data using Ajax, I am able to view the ...
Tympanitis asked 21/3, 2014 at 13:33
3
Solved
I build a short url translator engine in Python, and I'm seeing a TON of "broken pipe" errors, and I'm curious how to trap it best when using the BaseHTTPServer classes. This isn't the entire code,...
Brewton asked 19/5, 2011 at 18:45
1 Next >
© 2022 - 2024 — McMap. All rights reserved.