-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
ipfs commands panic when HTTP_PROXY set #4998
Comments
I dug in more and
The same container works fine when run manually:
|
avoids a nil pointer dereference fixes ipfs/kubo#4998
Did a little more digging and it looks like the cause isn't actually gitlab, but my gitlab runner's HTTP_PROXY setting. I added my ipfs server to NO_PROXY and my job is working again! I think @Stebalien's PR should still be done to get us a better error message. |
avoids a nil pointer dereference fixes ipfs/kubo#4998
Version information:
(also fails under 0.4.13 and 0.4.15-rc1)
Type:
Bug
Description:
A few weeks ago I setup a Gitlab job that runs
ipfs add
and then updates my DNS server. This was working great 2 weeks ago, but when I went to update a site today, I got this error:Under 0.4.13, the error is different:
And under master:
If I use the docker container to
ipfs add
on leafblower, everything works fine. This probably means it is an issue with GitLab and not IPFS itself, so I've opened a support ticket with them, too.This is the IPFS part of my .gitlab-ci.yml:
Any ideas how to get more useful logs out of ipfs? I can run
ipfs --api="$IPFS_API" add --hidden --pin --quieter --recursive ./site
on my laptop just fine with and without docker. It's just under gitlab that it dies.My previous successes were using gitlab-runner 10.6.0, so I rolled back to that version from 10.7, but that doesn't seem to have made any difference.
The text was updated successfully, but these errors were encountered: