Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
Update Sirupsen/logrus path to match current name (sirupsen/logrus)
Browse files Browse the repository at this point in the history
This should clean things up and mitigate a potential future issue when upgrading to
Go Modules (as seen in golang/go#28489).
  • Loading branch information
mbyczkowski committed Feb 27, 2019
1 parent 38ac839 commit 2df23d0
Show file tree
Hide file tree
Showing 41 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions api.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (
"net/http/pprof"
"time"

"github.com/Sirupsen/logrus"
"github.com/gorilla/mux"
"github.com/square/go-sq-metrics"
"github.com/sirupsen/logrus"
sqmetrics "github.com/square/go-sq-metrics"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"testing"
"time"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
2 changes: 1 addition & 1 deletion bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"fmt"
"io/ioutil"

"github.com/Sirupsen/logrus"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

// BackupBundleClient is a secrets client that reads from a Keywhiz backup bundle.
Expand Down
2 changes: 1 addition & 1 deletion bundle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package keysync
import (
"testing"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ import (
"strings"
"time"

"github.com/Sirupsen/logrus"
"github.com/jpillora/backoff"
pkgerr "github.com/pkg/errors"
"github.com/rcrowley/go-metrics"
"github.com/sirupsen/logrus"
"github.com/square/go-sq-metrics"
)

Expand Down
2 changes: 1 addition & 1 deletion client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"strings"
"testing"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/square/go-sq-metrics"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
4 changes: 2 additions & 2 deletions cmd/keyrestore/keyrestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import (
"os"
"time"

"github.com/Sirupsen/logrus"
"github.com/rcrowley/go-metrics"
"github.com/square/go-sq-metrics"
"github.com/sirupsen/logrus"
sqmetrics "github.com/square/go-sq-metrics"
"gopkg.in/alecthomas/kingpin.v2"

"github.com/square/keysync"
Expand Down
4 changes: 2 additions & 2 deletions cmd/keysync/keysync.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ import (

"github.com/square/keysync"

"github.com/Sirupsen/logrus"
"github.com/evalphobia/logrus_sentry"
"github.com/getsentry/raven-go"
"github.com/rcrowley/go-metrics"
"github.com/square/go-sq-metrics"
"github.com/sirupsen/logrus"
sqmetrics "github.com/square/go-sq-metrics"
"gopkg.in/alecthomas/kingpin.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion ownership.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"strconv"
"strings"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)

// Ownership indicates the default ownership of filesystem entries.
Expand Down
2 changes: 1 addition & 1 deletion ownership_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package keysync
import (
"testing"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion syncer.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"time"
"unsafe"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/square/go-sq-metrics"
)

Expand Down
2 changes: 1 addition & 1 deletion syncer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"testing"
"time"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
2 changes: 1 addition & 1 deletion util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import (
"strings"
"time"

"github.com/Sirupsen/logrus"
"github.com/rcrowley/go-metrics"
"github.com/sirupsen/logrus"
"github.com/square/go-sq-metrics"
)

Expand Down
2 changes: 1 addition & 1 deletion vendor/github.com/evalphobia/logrus_sentry/data_field.go

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

2 changes: 1 addition & 1 deletion vendor/github.com/evalphobia/logrus_sentry/sentry.go

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

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

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

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

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

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

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

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

6 changes: 3 additions & 3 deletions vendor/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"version": 0,
"dependencies": [
{
"importpath": "github.com/Sirupsen/logrus",
"repository": "https://github.com/Sirupsen/logrus",
"importpath": "github.com/sirupsen/logrus",
"repository": "https://github.com/sirupsen/logrus",
"vcs": "git",
"revision": "3f603f494d61c73457fb234161d8982b9f0f0b71",
"branch": "master",
Expand Down Expand Up @@ -164,4 +164,4 @@
"notests": true
}
]
}
}
2 changes: 1 addition & 1 deletion write.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import (
"path/filepath"
"syscall"

"github.com/Sirupsen/logrus"
pkgerr "github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

// OutputCollection handles a collection of outputs.
Expand Down
2 changes: 1 addition & 1 deletion write_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"path/filepath"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit 2df23d0

Please sign in to comment.