mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #276 from ernado/master
use klauspost/crc32 instead of hash/crc32
This commit is contained in:
commit
7dcbbaa653
|
@ -1,7 +1,8 @@
|
||||||
sudo: false
|
sudo: false
|
||||||
language: go
|
language: go
|
||||||
go:
|
go:
|
||||||
- 1.5
|
- 1.5
|
||||||
|
- 1.6
|
||||||
- tip
|
- tip
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
@ -9,6 +10,6 @@ before_install:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- go get ./go/...
|
- go get ./go/...
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- go test ./go/...
|
- go test ./go/...
|
||||||
|
|
|
@ -2,7 +2,7 @@ package storage
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"hash/crc32"
|
"github.com/klauspost/crc32"
|
||||||
|
|
||||||
"github.com/chrislusf/seaweedfs/go/util"
|
"github.com/chrislusf/seaweedfs/go/util"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue