diff options
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..eaeae4427 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/aszxqw/weed-fs/go/storage" + "github.com/aszxqw/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..369c0b9b9 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/weed-fs/go/storage" "github.com/goraft/raft" ) diff --git a/go/topology/collection.go b/go/topology/collection.go index c014231af..72ac86522 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/aszxqw/weed-fs/go/storage" ) type Collection struct { diff --git a/go/topology/data_node.go b/go/topology/data_node.go index c67c5c1c1..5c16cf85d 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/weed-fs/go/storage" "strconv" ) diff --git a/go/topology/node.go b/go/topology/node.go index c52414008..12e9a709a 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/weed-fs/go/storage" "errors" "math/rand" "strings" diff --git a/go/topology/store_replicate.go b/go/topology/store_replicate.go index a982cebe5..fefaea8a6 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/weed-fs/go/operation" + "github.com/aszxqw/weed-fs/go/storage" + "github.com/aszxqw/weed-fs/go/util" "net/http" "strconv" ) diff --git a/go/topology/topology.go b/go/topology/topology.go index acdef5e36..77c9558bb 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/weed-fs/go/operation" + "github.com/aszxqw/weed-fs/go/sequence" + "github.com/aszxqw/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..61e6f5ffa 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/weed-fs/go/storage" "math/rand" "time" ) diff --git a/go/topology/topology_vacuum.go b/go/topology/topology_vacuum.go index 9eaca37d4..bdc0c38f9 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/weed-fs/go/storage" + "github.com/aszxqw/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..e083a8531 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/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..ba1e43ff2 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/aszxqw/weed-fs/go/sequence" + "github.com/aszxqw/weed-fs/go/storage" "encoding/json" "fmt" "testing" diff --git a/go/topology/volume_layout.go b/go/topology/volume_layout.go index 1e55072a3..35f45c08d 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/aszxqw/weed-fs/go/glog" + "github.com/aszxqw/weed-fs/go/storage" "errors" "math/rand" "sync" |
