diff options
| author | chrislusf <chris.lu@gmail.com> | 2014-09-25 21:24:08 -0700 |
|---|---|---|
| committer | chrislusf <chris.lu@gmail.com> | 2014-09-25 21:24:08 -0700 |
| commit | 348a50052e8aa9b90e80a35c5a4d138fe2d5dbb0 (patch) | |
| tree | 588b1bb06978b57ce66c6af1fe6c916b2ca34153 /go/topology | |
| parent | a2f8d985fbcddf9722015dfafe8a9ddffcf55fc0 (diff) | |
| parent | 620b1244b44aa0f650a7ff5dac53d4c646efa22d (diff) | |
| download | seaweedfs-348a50052e8aa9b90e80a35c5a4d138fe2d5dbb0.tar.xz seaweedfs-348a50052e8aa9b90e80a35c5a4d138fe2d5dbb0.zip | |
Merge pull request #15 from aszxqw/upstream_master
Changing to github !!! Thanks!
Diffstat (limited to 'go/topology')
| -rw-r--r-- | go/topology/allocate_volume.go | 4 | ||||
| -rw-r--r-- | go/topology/cluster_commands.go | 4 | ||||
| -rw-r--r-- | go/topology/collection.go | 2 | ||||
| -rw-r--r-- | go/topology/data_node.go | 4 | ||||
| -rw-r--r-- | go/topology/node.go | 4 | ||||
| -rw-r--r-- | go/topology/store_replicate.go | 8 | ||||
| -rw-r--r-- | go/topology/topology.go | 8 | ||||
| -rw-r--r-- | go/topology/topology_event_handling.go | 4 | ||||
| -rw-r--r-- | go/topology/topology_vacuum.go | 6 | ||||
| -rw-r--r-- | go/topology/volume_growth.go | 4 | ||||
| -rw-r--r-- | go/topology/volume_growth_test.go | 4 | ||||
| -rw-r--r-- | go/topology/volume_layout.go | 4 |
12 files changed, 28 insertions, 28 deletions
diff --git a/go/topology/allocate_volume.go b/go/topology/allocate_volume.go index 4aeef35f7..6562e9ac5 100644 --- a/go/topology/allocate_volume.go +++ b/go/topology/allocate_volume.go @@ -1,8 +1,8 @@ package topology import ( - "code.google.com/p/weed-fs/go/storage" - "code.google.com/p/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/util" "encoding/json" "errors" "net/url" diff --git a/go/topology/cluster_commands.go b/go/topology/cluster_commands.go index 703435173..cafc52c76 100644 --- a/go/topology/cluster_commands.go +++ b/go/topology/cluster_commands.go @@ -1,8 +1,8 @@ package topology import ( - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/storage" "github.com/goraft/raft" ) diff --git a/go/topology/collection.go b/go/topology/collection.go index c014231af..506f43fbf 100644 --- a/go/topology/collection.go +++ b/go/topology/collection.go @@ -1,7 +1,7 @@ package topology import ( - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/storage" ) type Collection struct { diff --git a/go/topology/data_node.go b/go/topology/data_node.go index c67c5c1c1..c3b90470f 100644 --- a/go/topology/data_node.go +++ b/go/topology/data_node.go @@ -1,8 +1,8 @@ package topology import ( - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/storage" "strconv" ) diff --git a/go/topology/node.go b/go/topology/node.go index c52414008..54118802e 100644 --- a/go/topology/node.go +++ b/go/topology/node.go @@ -1,8 +1,8 @@ package topology import ( - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/storage" "errors" "math/rand" "strings" diff --git a/go/topology/store_replicate.go b/go/topology/store_replicate.go index a982cebe5..6ea019bd8 100644 --- a/go/topology/store_replicate.go +++ b/go/topology/store_replicate.go @@ -2,10 +2,10 @@ package topology import ( "bytes" - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/operation" - "code.google.com/p/weed-fs/go/storage" - "code.google.com/p/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/operation" + "github.com/chrislusf/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/util" "net/http" "strconv" ) diff --git a/go/topology/topology.go b/go/topology/topology.go index acdef5e36..c90e8de0b 100644 --- a/go/topology/topology.go +++ b/go/topology/topology.go @@ -1,10 +1,10 @@ package topology import ( - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/operation" - "code.google.com/p/weed-fs/go/sequence" - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/operation" + "github.com/chrislusf/weed-fs/go/sequence" + "github.com/chrislusf/weed-fs/go/storage" "errors" "github.com/goraft/raft" "io/ioutil" diff --git a/go/topology/topology_event_handling.go b/go/topology/topology_event_handling.go index 1e630e149..eb4491484 100644 --- a/go/topology/topology_event_handling.go +++ b/go/topology/topology_event_handling.go @@ -1,8 +1,8 @@ package topology import ( - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/storage" "math/rand" "time" ) diff --git a/go/topology/topology_vacuum.go b/go/topology/topology_vacuum.go index 9eaca37d4..72846f20b 100644 --- a/go/topology/topology_vacuum.go +++ b/go/topology/topology_vacuum.go @@ -1,9 +1,9 @@ package topology import ( - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/storage" - "code.google.com/p/weed-fs/go/util" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/util" "encoding/json" "errors" "net/url" diff --git a/go/topology/volume_growth.go b/go/topology/volume_growth.go index 778aa038a..2859d3992 100644 --- a/go/topology/volume_growth.go +++ b/go/topology/volume_growth.go @@ -1,8 +1,8 @@ package topology import ( - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/storage" "fmt" "math/rand" "sync" diff --git a/go/topology/volume_growth_test.go b/go/topology/volume_growth_test.go index d2913ef5c..5581c87ce 100644 --- a/go/topology/volume_growth_test.go +++ b/go/topology/volume_growth_test.go @@ -1,8 +1,8 @@ package topology import ( - "code.google.com/p/weed-fs/go/sequence" - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/sequence" + "github.com/chrislusf/weed-fs/go/storage" "encoding/json" "fmt" "testing" diff --git a/go/topology/volume_layout.go b/go/topology/volume_layout.go index 1e55072a3..7bb0cf7e3 100644 --- a/go/topology/volume_layout.go +++ b/go/topology/volume_layout.go @@ -1,8 +1,8 @@ package topology import ( - "code.google.com/p/weed-fs/go/glog" - "code.google.com/p/weed-fs/go/storage" + "github.com/chrislusf/weed-fs/go/glog" + "github.com/chrislusf/weed-fs/go/storage" "errors" "math/rand" "sync" |
