-
Notifications
You must be signed in to change notification settings - Fork 41
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
Connection reset by peer #57
Comments
Do you have any logs from the server? This error indicates that the server has crashed and the connection was dropped. |
I don't think it is crashing.
|
Running into the same issue. If you wait approximately 13 minutes or so it finally times out and spits out an error as follows.
I have verified that the minio is working with the minio client and created a bucket named Edit: Edit2: So it appears that the issue is the port reference in the AWS_S3_ENDPOINT. When I had it pointed to a cloudflare tunnel it worked without any issues due to no port number in the env var. Once I redid the config to have it point locally due to the minio and rudolfs being on the same box no need to send the traffic to cloudflare to come back that caused it to break as well. |
@solareon Thanks for digging into this. It sounds like this is a configuration issue? It's not super clear to me what should be fixed on the Rudolfs side of things, whether it be documentation or code. Did minio stop supporting non-HTTPS connections? For starters, I think one fix is to avoid retrying the connection in this particular situation so it fails much faster. However, it looks like Rusoto is returning an |
@jasonwhite Not a problem at all. Almost all of the other git lfs impementations seem to be abandoned or unmaintained and the git-lfs-test server while it works ain't really all that great. From looking at it further it appears to be a code issue. When a port is defined in the Minio doesn't seem to have any issues with the connection being http or https as my test with https was with a cloudflare tunnel pointed at the http endpoint. |
Looking at this more I think that the underlying issue is the rusoto has deprecated connecting via http and requires the connection to be over https. I tried doing some hostname mapping for the container and connecting over http and it didn't even try to connect. |
Indeed, that looks like the problem: rusoto/rusoto#1980 (With a potential workaround.) Rudolfs should probably migrate away from Rusoto, since it is now unmaintained. |
I encounter an error when I am running the
docker-compose.minio.yml
locally :after a
git push
I have a test repo with this .lsconfig :
Thanks in advance
The text was updated successfully, but these errors were encountered: