Skip to content

Commit

Permalink
*: Remove hbase related doc and comment (pingcap#1367)
Browse files Browse the repository at this point in the history
  • Loading branch information
shenli authored Jun 30, 2016
1 parent 0d5ffa7 commit bfe013e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions docs/QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

You can quickly test TiDB with Docker, the source repository contains the Dockerfile which contains local tidb-server.

Or you can pull TiDB Docker image contains HBase standalone and then run TiDB as a distributed database in a Docker container.

To install Docker on your system, you can read the document on https://docs.docker.com/

```
Expand Down
2 changes: 1 addition & 1 deletion kv/error.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func IsRetryableError(err error) bool {
if terror.ErrorEqual(err, ErrRetryable) ||
terror.ErrorEqual(err, ErrLockConflict) ||
terror.ErrorEqual(err, ErrConditionNotMatch) ||
// HBase exception message will tell you if you should retry or not
// TiKV exception message will tell you if you should retry or not
strings.Contains(err.Error(), "try again later") {
return true
}
Expand Down

0 comments on commit bfe013e

Please sign in to comment.