Merge pull request #276 from ernado/master

use klauspost/crc32 instead of hash/crc32
This commit is contained in:
Chris Lu
2016-04-01 12:35:44 -07:00
2 changed files with 4 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ sudo: false
language: go
go:
- 1.5
- 1.6
- tip
before_install:

View File

@@ -2,7 +2,7 @@ package storage
import (
"fmt"
"hash/crc32"
"github.com/klauspost/crc32"
"github.com/chrislusf/seaweedfs/go/util"
)