diff options
Diffstat (limited to 'go/storage')
| -rw-r--r-- | go/storage/cdb_map.go | 2 | ||||
| -rw-r--r-- | go/storage/cdb_map_test.go | 2 | ||||
| -rw-r--r-- | go/storage/compact_map_perf_test.go | 4 | ||||
| -rw-r--r-- | go/storage/compress.go | 2 | ||||
| -rw-r--r-- | go/storage/crc.go | 2 | ||||
| -rw-r--r-- | go/storage/file_id.go | 4 | ||||
| -rw-r--r-- | go/storage/needle.go | 6 | ||||
| -rw-r--r-- | go/storage/needle_map.go | 4 | ||||
| -rw-r--r-- | go/storage/needle_read_write.go | 4 | ||||
| -rw-r--r-- | go/storage/store.go | 6 | ||||
| -rw-r--r-- | go/storage/store_vacuum.go | 2 | ||||
| -rw-r--r-- | go/storage/volume.go | 2 | ||||
| -rw-r--r-- | go/storage/volume_info.go | 2 | ||||
| -rw-r--r-- | go/storage/volume_super_block.go | 2 | ||||
| -rw-r--r-- | go/storage/volume_vacuum.go | 2 |
15 files changed, 23 insertions, 23 deletions
diff --git a/go/storage/cdb_map.go b/go/storage/cdb_map.go index 07cbca1a9..1869a563e 100644 --- a/go/storage/cdb_map.go +++ b/go/storage/cdb_map.go @@ -1,7 +1,7 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/util" "encoding/json" "errors" "fmt" diff --git a/go/storage/cdb_map_test.go b/go/storage/cdb_map_test.go index 25f6067cb..cff7dfa61 100644 --- a/go/storage/cdb_map_test.go +++ b/go/storage/cdb_map_test.go @@ -1,7 +1,7 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/glog" "math/rand" "os" "runtime" diff --git a/go/storage/compact_map_perf_test.go b/go/storage/compact_map_perf_test.go index 4795ead5a..ef43de25b 100644 --- a/go/storage/compact_map_perf_test.go +++ b/go/storage/compact_map_perf_test.go @@ -1,8 +1,8 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" - "github.com/aszxqw/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/util" "log" "os" "testing" diff --git a/go/storage/compress.go b/go/storage/compress.go index 7390b85dd..a353c9d3a 100644 --- a/go/storage/compress.go +++ b/go/storage/compress.go @@ -2,7 +2,7 @@ package storage import ( "bytes" - "github.com/aszxqw/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/glog" "compress/flate" "compress/gzip" "io/ioutil" diff --git a/go/storage/crc.go b/go/storage/crc.go index 9b77c30c6..7aa400959 100644 --- a/go/storage/crc.go +++ b/go/storage/crc.go @@ -1,7 +1,7 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/util" "fmt" "hash/crc32" ) diff --git a/go/storage/file_id.go b/go/storage/file_id.go index 435a54202..ec566826c 100644 --- a/go/storage/file_id.go +++ b/go/storage/file_id.go @@ -1,8 +1,8 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" - "github.com/aszxqw/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/util" "encoding/hex" "errors" "strings" diff --git a/go/storage/needle.go b/go/storage/needle.go index 803bc624e..daede321b 100644 --- a/go/storage/needle.go +++ b/go/storage/needle.go @@ -1,9 +1,9 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" - "github.com/aszxqw/weed-fs/go/images" - "github.com/aszxqw/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/images" + "github.com/chrislusf/weed-fs/go/util" "encoding/hex" "errors" "io/ioutil" diff --git a/go/storage/needle_map.go b/go/storage/needle_map.go index 90f3eff7d..dca2e6c5d 100644 --- a/go/storage/needle_map.go +++ b/go/storage/needle_map.go @@ -1,8 +1,8 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" - "github.com/aszxqw/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/util" "fmt" "io" "os" diff --git a/go/storage/needle_read_write.go b/go/storage/needle_read_write.go index d298c806b..bf452ba37 100644 --- a/go/storage/needle_read_write.go +++ b/go/storage/needle_read_write.go @@ -1,8 +1,8 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" - "github.com/aszxqw/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/util" "errors" "fmt" "io" diff --git a/go/storage/store.go b/go/storage/store.go index f5b252ad3..e7a9dac94 100644 --- a/go/storage/store.go +++ b/go/storage/store.go @@ -2,9 +2,9 @@ package storage import ( proto "code.google.com/p/goprotobuf/proto" - "github.com/aszxqw/weed-fs/go/glog" - "github.com/aszxqw/weed-fs/go/operation" - "github.com/aszxqw/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/operation" + "github.com/chrislusf/weed-fs/go/util" "encoding/json" "errors" "fmt" diff --git a/go/storage/store_vacuum.go b/go/storage/store_vacuum.go index b3f13fd2d..3527e4f59 100644 --- a/go/storage/store_vacuum.go +++ b/go/storage/store_vacuum.go @@ -1,7 +1,7 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/glog" "fmt" "strconv" ) diff --git a/go/storage/volume.go b/go/storage/volume.go index 10fd145e9..de79e9107 100644 --- a/go/storage/volume.go +++ b/go/storage/volume.go @@ -2,7 +2,7 @@ package storage import ( "bytes" - "github.com/aszxqw/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/glog" "errors" "fmt" "io" diff --git a/go/storage/volume_info.go b/go/storage/volume_info.go index 81dff4a11..6410c1784 100644 --- a/go/storage/volume_info.go +++ b/go/storage/volume_info.go @@ -1,7 +1,7 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/operation" + "github.com/chrislusf/weed-fs/go/operation" ) type VolumeInfo struct { diff --git a/go/storage/volume_super_block.go b/go/storage/volume_super_block.go index da510ee30..a7e86b1c3 100644 --- a/go/storage/volume_super_block.go +++ b/go/storage/volume_super_block.go @@ -1,7 +1,7 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/glog" "fmt" "os" ) diff --git a/go/storage/volume_vacuum.go b/go/storage/volume_vacuum.go index 7feb1c256..b348434d2 100644 --- a/go/storage/volume_vacuum.go +++ b/go/storage/volume_vacuum.go @@ -1,7 +1,7 @@ package storage import ( - "github.com/aszxqw/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/glog" "fmt" "os" "time" |
