Skip to content

Commit

Permalink
*: update log
Browse files Browse the repository at this point in the history
  • Loading branch information
disksing committed Dec 22, 2015
1 parent 878c9b7 commit 140c798
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions store/hbase/kv.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ func (d Driver) Open(path string) (kv.Storage, error) {
uuid := fmt.Sprintf("hbase-%v-%v", zks, tableName)
if store, ok := mc.cache[uuid]; ok {
if oracleAddr != store.oracleAddr {
err = errors.Errorf("hbase: store(%s) is opened with a different tso(%v)", uuid, store.oracleAddr)
log.Warn(err)
err = errors.Errorf("hbase: store(%s) is opened with a different tso, old: %v, new: %v", uuid, store.oracleAddr, oracleAddr)
log.Warn(errors.ErrorStack(err))
return nil, err
}
return store, nil
Expand Down

0 comments on commit 140c798

Please sign in to comment.