Skip to content

Commit

Permalink
Remove stray fmt.Printf
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Aug 29, 2019
1 parent 8604797 commit 8dea516
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion driver/registry_sql.go
Expand Up @@ -158,7 +158,6 @@ func (m *RegistrySQL) CreateSchemas(dbName string) (int, error) {

func (m *RegistrySQL) CanHandle(dsn string) bool {
scheme := strings.Split(dsn, "://")[0]
fmt.Printf("scheme: %s %s \n\n", scheme, dsn)
s := dbal.Canonicalize(scheme)
return s == dbal.DriverMySQL || s == dbal.DriverPostgreSQL || s == dbal.DriverCockroachDB
}
Expand Down
1 change: 1 addition & 0 deletions go.mod
Expand Up @@ -60,5 +60,6 @@ require (
)

replace git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999

// Fix for https://github.com/golang/lint/issues/436
replace github.com/golang/lint => github.com/golang/lint v0.0.0-20190227174305-8f45f776aaf1

0 comments on commit 8dea516

Please sign in to comment.