Re: git-upload-pack died of signal 13
From: Sitaram Chamarty <hidden>
Date: 2016-06-15 22:54:00
On Wed, Jun 6, 2012 at 4:58 PM, Tajti Ákos [off-list ref] wrote:
Dear List, we got "git-upload pack died of signal 13" error when pushing using this command: Executing: "/usr/lib/git-core/git-http-backend" env: "CONTENT_TYPE=application/x-git-upload-pack-request" "GIT_HTTP_EXPORT_ALL=true" "SERVER_PORT=443" "CODEBEAMER_SMART_SCM_SERVLET=true" "REMOTE_ADDR=91.82.170.74" "REMOTE_HOST=91.82.170.74" "SERVER_SOFTWARE=Apache Tomcat/6.0.35" "SERVER_NAME=codebeamer.com" "GIT_PROJECT_ROOT=/home/akos/repository/git" "REMOTE_USER=zl" "PATH_INFO=/cbdev-git/git-upload-pack" "QUERY_STRING=" "AUTH_TYPE=Basic" "GATEWAY_INTERFACE=CGI/1.1" "SERVER_PROTOCOL=HTTP/1.1" "REQUEST_METHOD=POST" "CONTENT_LENGTH=1157" "REQUEST_URI=/app/git/my-git/git-upload-pack" What may be the cause?
a post-receive script that does not consume its STDIN is the usual
cause of a SIGPIPE error.
Try adding "cat >/dev/null" into it if you really don't care about the input.
("kill -l" will tell you what the names are for each number).
Thanks in advance, Ákos Tajti -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
-- Sitaram