Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Commit

Permalink
fix sirupsen
Browse files Browse the repository at this point in the history
  • Loading branch information
datoug committed Jun 15, 2017
1 parent 7673e97 commit 0eb11de
Show file tree
Hide file tree
Showing 46 changed files with 75 additions and 77 deletions.
2 changes: 1 addition & 1 deletion benchmark/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import (
"github.com/uber/tchannel-go/thrift"
"golang.org/x/net/context"

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

const (
Expand Down
2 changes: 1 addition & 1 deletion benchmark/e2ebench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (

"testing"

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

func BenchmarkE2E(b *testing.B) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/inputbench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ package benchmark
import (
"testing"

log "github.com/Sirupsen/logrus"
_ "github.com/apache/thrift/lib/go/thrift"
log "github.com/sirupsen/logrus"
)

func BenchmarkInputhostWrite(b *testing.B) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/outputbench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (

"testing"

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

func BenchmarkOutputRead(b *testing.B) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/storebench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import (

"github.com/pborman/uuid"

log "github.com/Sirupsen/logrus"
_ "github.com/apache/thrift/lib/go/thrift"
log "github.com/sirupsen/logrus"
"github.com/uber/cherami-server/common"
"github.com/uber/cherami-thrift/.generated/go/cherami"

Expand Down
2 changes: 1 addition & 1 deletion clients/metadata/metadata_cassandra.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ import (
m "github.com/uber/cherami-thrift/.generated/go/metadata"
"github.com/uber/cherami-thrift/.generated/go/shared"

log "github.com/Sirupsen/logrus"
"github.com/gocql/gocql"
"github.com/pborman/uuid"
log "github.com/sirupsen/logrus"
"github.com/uber/tchannel-go/thrift"
)

Expand Down
2 changes: 1 addition & 1 deletion clients/metadata/metadata_cassandra_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import (
m "github.com/uber/cherami-thrift/.generated/go/metadata"
"github.com/uber/cherami-thrift/.generated/go/shared"

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

type CassandraSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion clients/metadata/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/gocql/gocql"
log "github.com/sirupsen/logrus"
"github.com/uber/cherami-server/common"
"github.com/uber/cherami-server/common/configure"
m "github.com/uber/cherami-thrift/.generated/go/metadata"
Expand Down
2 changes: 1 addition & 1 deletion cmd/servicecmd/servicestartcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"os"
"strings"

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

"github.com/uber/cherami-server/clients/metadata"
"github.com/uber/cherami-server/common"
Expand Down
2 changes: 1 addition & 1 deletion common/cassandra_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import (
"bytes"
"os/exec"

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

// NewCassandraCluster creates a cassandra cluster given comma separated list of clusterHosts
Expand Down
2 changes: 1 addition & 1 deletion common/configure/commonconfigure.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (
"path"
"runtime"

log "github.com/Sirupsen/logrus"
"github.com/pborman/uuid"
log "github.com/sirupsen/logrus"
"github.com/uber/tchannel-go"
"gopkg.in/validator.v2"
"gopkg.in/yaml.v2"
Expand Down
2 changes: 1 addition & 1 deletion common/configure/commonkafkaconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
package configure

import (
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"
"io/ioutil"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion common/configure/commonlogconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"io/ioutil"
"sync/atomic"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/uber-common/bark"
)

Expand Down
4 changes: 2 additions & 2 deletions common/configure/commonserviceconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
"fmt"
"net"

"github.com/Sirupsen/logrus"
log "github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/uber-common/bark"
"github.com/uber/tchannel-go"
"github.com/uber/tchannel-go/thrift"
Expand Down
2 changes: 1 addition & 1 deletion common/dconfig/configmgr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"reflect"
"testing"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"github.com/uber-common/bark"
Expand Down
2 changes: 1 addition & 1 deletion common/dconfigclient/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"fmt"
"regexp"

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

// SetterInt is the setter function to generate the handler function
Expand Down
2 changes: 1 addition & 1 deletion common/loadreporter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"github.com/stretchr/testify/suite"
"github.com/uber-common/bark"

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

"github.com/uber/cherami-thrift/.generated/go/controller"

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

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

"github.com/stretchr/testify/mock"
"github.com/uber-common/bark"
Expand Down
2 changes: 1 addition & 1 deletion common/rp_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/pborman/uuid"
log "github.com/sirupsen/logrus"
"github.com/uber/ringpop-go"
"github.com/uber/ringpop-go/discovery/statichosts"
"github.com/uber/ringpop-go/swim"
Expand Down
2 changes: 1 addition & 1 deletion common/rpm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"testing"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"github.com/uber-common/bark"
Expand Down
2 changes: 1 addition & 1 deletion common/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/uber-common/bark"
"github.com/uber/cherami-server/common/configure"
dconfig "github.com/uber/cherami-server/common/dconfigclient"
Expand Down
2 changes: 1 addition & 1 deletion common/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import (
"sync"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/uber-common/bark"
"github.com/uber/cherami-server/common/configure"
"github.com/uber/cherami-server/common/metrics"
Expand Down
2 changes: 1 addition & 1 deletion common/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"testing"
"time"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"github.com/uber-common/bark"
Expand Down
2 changes: 1 addition & 1 deletion distance/dist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"os"
"testing"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
Expand Down
55 changes: 27 additions & 28 deletions glide.lock

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

Loading

0 comments on commit 0eb11de

Please sign in to comment.