Skip to content

Commit

Permalink
Update logrus import
Browse files Browse the repository at this point in the history
Signed-off-by: Harsh Desai <harsh@portworx.com>
Signed-off-by: Luis Pabón <luis@portworx.com>
  • Loading branch information
Harsh Desai authored and lpabon committed Mar 14, 2018
1 parent edc5e7b commit 8401fff
Show file tree
Hide file tree
Showing 268 changed files with 70,070 additions and 23,366 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: required
dist: trusty
language: go
go:
- 1.9
- 1.6
before_install:
- sudo apt-get update -yq
script:
Expand Down
19 changes: 15 additions & 4 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 0 additions & 25 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,6 @@
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true

[[override]]
name = "golang.org/x/sys"
revision = "320cb01ddbbf0473674c2585f9b6e245721de355"

[[override]]
name = "github.com/miekg/dns"
Expand All @@ -48,10 +27,6 @@
name = "github.com/hashicorp/memberlist"
revision = "7c7d6bae440fb7c6dcde850672e0f68263f9e29c"

[[constraint]]
name = "github.com/sirupsen/logrus"
revision = "6d9ae300aaf85d6acd2e5424081c7fcddb21dab8"

[prune]
go-tests = true
unused-packages = true
4 changes: 2 additions & 2 deletions proto/gossip_store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ func TestGossipStoreUpdateData(t *testing.T) {
t.Error("Wrongly Updated latest data d: ", n, " o: ", nodeInfo)
}
olderTime := n.LastUpdateTs.UnixNano() + 1000
ts := time.Unix(0, olderTime)
if ts != nodeInfo.LastUpdateTs {
ts := time.Unix(0, olderTime).UnixNano()
if ts != nodeInfo.LastUpdateTs.UnixNano() {
t.Error("Wrongly Updated latest data d: ", n, " o: ", nodeInfo)
}
}
Expand Down
17 changes: 11 additions & 6 deletions vendor/github.com/sirupsen/logrus/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions vendor/github.com/sirupsen/logrus/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8401fff

Please sign in to comment.