jfrog / gocenter

The Github README for JFrog Go-center. Use this for reporting issues
https://gocenter.io
Apache License 2.0
164 stars 23 forks source link

unable to download github.com/projectcalico/confd@v0.0.0-20191010042443-cb39656af364 #36

Closed ghost closed 4 years ago

ghost commented 4 years ago

To help us debug your issue please confirm the following :

Hi,

I am unable to download the go package github.com/projectcalico/confd@v0.0.0-20191010042443-cb39656af364. Could you please load the missing version (cb39656af364) for the module github.com/projectcalico/confd.

test duraig$ date
Fri Jan 10 12:25:58 CST 2020
test duraig$echo $GOPROXY
https://gocenter.io
test duraig$ go get -v github.com/projectcalico/confd@v0.0.0-20191010042443-cb39656af364
go: finding github.com v0.0.0-20191010042443-cb39656af364
go: finding github.com/projectcalico/confd v0.0.0-20191010042443-cb39656af364
go: finding github.com/projectcalico v0.0.0-20191010042443-cb39656af364
go get github.com/projectcalico/confd@v0.0.0-20191010042443-cb39656af364: github.com/projectcalico/confd@v0.0.0-20191010042443-cb39656af364: reading https://gocenter.io/github.cotest duraig$ gtest duraig$ go test duraig$ go test duraig$ go test duraig$ go get -v github.cotest duraig$test duraig$test duraig$ go test duraig$ date
Fri Jan 10 12:32:13 CST 2020
test duraig$ go get -v github.com/projectcalico/confd@v0.0.0-20191010042443-cb39656af364
go: finding github.com/projectcalico/confd v0.0.0-20191010042443-cb39656af364
go: finding github.com/projectcalico v0.0.0-20191010042443-cb39656af364
go: finding github.com v0.0.0-20191010042443-cb39656af364
go get github.com/projectcalico/confd@v0.0.0-20191010042443-cb39656af364: github.com/projectcalico/confd@v0.0.0-20191010042443-cb39656af364: reading https://gocenter.io/github.com/projectcalico/confd/@v/v0.0.0-20191010042443-cb39656af364.info: 404 Not Found
test duraig$ 

confd duraig$ git remote -v
origin  https://github.com/projectcalico/confd.git (fetch)
origin  https://github.com/projectcalico/confd.git (push)
confd duraig$ git show cb39656af364
commit cb39656af3649f9ee12c45c2a0b42327dd93171d
Merge: ad3bc8c 8e477d2
Author: Laurence Man <laurence@tigera.io>
Date:   Thu Oct 10 19:50:44 2019 -0700

    Merge pull request #283 from lmm/lmm-cherry-pick

    Fix service IPs withdrawal

confd duraig$ git show -s --date=short --pretty='format:%h (%s, %ad)' cb39656af364
cb39656 (Merge pull request #283 from lmm/lmm-cherry-pick, 2019-10-10)

Thanks, Durai G

elioengcomp commented 4 years ago

Hi @dvattaka,

Thank you for sending your feedback.

github.com/projectcalico/confd is a fork of github.com/kelseyhightower/confd. The pseudo-version you are looking for still has the original module name declared in the go.mod file (source)

module github.com/kelseyhightower/confd

go 1.12

require (
    github.com/BurntSushi/toml v0.3.1
    github.com/aws/aws-sdk-go v1.22.1 // indirect
    github.com/garyburd/redigo v1.6.0 // indirect
    github.com/hashicorp/consul/api v1.1.0 // indirect
    github.com/hashicorp/vault/api v1.0.4 // indirect
    github.com/kelseyhightower/memkv v0.1.1
    github.com/onsi/ginkgo v1.8.0
    github.com/onsi/gomega v1.5.0
    github.com/projectcalico/libcalico-go v0.0.0-20191008175127-399044ecb659
    github.com/projectcalico/typha v0.0.0-20191009174525-7576f11000c9
    github.com/samuel/go-zookeeper v0.0.0-20190801204459-3c104360edc8 // indirect
    github.com/sirupsen/logrus v1.4.2
    github.com/ugorji/go v1.1.7 // indirect
    github.com/xordataexchange/crypt v0.0.2 // indirect
    k8s.io/api v0.0.0-20190620084959-7cf5895f2711
    k8s.io/apimachinery v0.0.0-20190612205821-1799e75a0719
    k8s.io/client-go v12.0.0+incompatible
)

replace github.com/sirupsen/logrus => github.com/projectcalico/logrus v0.0.0-20180627202928-fc9bbf2f57995271c5cd6911ede7a2ebc5ea7c6f

This makes this module invalid and not available in GoCenter.

You can check the available versions for github.com/projectcalico/confd clicking on the Versions Tab here: https://search.gocenter.io/github.com~2Fprojectcalico~2Fconfd/info

ghost commented 4 years ago

Thank you.

elioengcomp commented 4 years ago

You're welcome.