-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from xmidt-org/feature/bump_deps
bump dependencies
- Loading branch information
Showing
19 changed files
with
1,174 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package cassandra | ||
|
||
import hlog "github.com/InVisionApp/go-logger" | ||
|
||
// gocql addapter logger to go kit loger | ||
type goCqlLogger struct { | ||
Logger hlog.Logger | ||
} | ||
|
||
func (g *goCqlLogger) Print(v ...interface{}) { | ||
g.Logger.Warn(v...) | ||
} | ||
|
||
func (g *goCqlLogger) Printf(format string, v ...interface{}) { | ||
g.Logger.Warnf(format, v...) | ||
} | ||
|
||
func (g *goCqlLogger) Println(v ...interface{}) { | ||
g.Logger.Warnln(v...) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
module github.com/xmidt-org/codex-db | ||
|
||
go 1.12 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/InVisionApp/go-health/v2 v2.1.2 | ||
github.com/InVisionApp/go-logger v1.0.1 | ||
github.com/bitly/go-hostpool v0.0.0-20171023180738-a3a6125de932 // indirect | ||
github.com/cenkalti/backoff/v3 v3.1.1 | ||
github.com/go-kit/kit v0.9.0 | ||
|
||
github.com/cenkalti/backoff/v3 v3.2.2 | ||
github.com/go-kit/kit v0.12.0 | ||
github.com/gocql/gocql v1.0.0 // indirect | ||
github.com/goph/emperror v0.17.3-0.20190703203600-60a8d9faa17b | ||
github.com/influxdata/influxdb1-client v0.0.0-20190809212627-fc22c7df067e // indirect | ||
github.com/jinzhu/gorm v1.9.10 | ||
github.com/stretchr/testify v1.4.0 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/xmidt-org/capacityset v0.1.1 | ||
github.com/xmidt-org/webpa-common v1.5.0 | ||
github.com/xmidt-org/wrp-go v1.3.3 | ||
github.com/xmidt-org/wrp-go/v2 v2.0.1 | ||
|
||
github.com/yugabyte/gocql v0.0.0-20190522232832-e049977574e9 | ||
github.com/xmidt-org/webpa-common/v2 v2.0.4 | ||
github.com/yugabyte/gocql v0.0.0-20220204171058-0bd8e6cb12d0 | ||
) |
Oops, something went wrong.