diff options
| author | Brian McQueen <bmcquee@l-sclX1Q0DV7-M.local> | 2014-12-14 00:20:21 -0800 |
|---|---|---|
| committer | Brian McQueen <bmcquee@l-sclX1Q0DV7-M.local> | 2014-12-14 00:20:21 -0800 |
| commit | c0dfdf439264964cf702b8a872c59f7a79fbd05b (patch) | |
| tree | 9e44cfe0473a1724b3a4638a06121e488d889986 /go/topology | |
| parent | a3583e4e7cdba69346397b963193eda9ed10c3a3 (diff) | |
| download | seaweedfs-c0dfdf439264964cf702b8a872c59f7a79fbd05b.tar.xz seaweedfs-c0dfdf439264964cf702b8a872c59f7a79fbd05b.zip | |
switch to my forked repo
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 | 4 | ||||
| -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 | 10 | ||||
| -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, 30 insertions, 30 deletions
diff --git a/go/topology/allocate_volume.go b/go/topology/allocate_volume.go index a791b4c1c..38843dd54 100644 --- a/go/topology/allocate_volume.go +++ b/go/topology/allocate_volume.go @@ -5,8 +5,8 @@ import ( "errors" "net/url" - "github.com/chrislusf/weed-fs/go/storage" - "github.com/chrislusf/weed-fs/go/util" + "github.com/mcqueenorama/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/util" ) type AllocateVolumeResult struct { diff --git a/go/topology/cluster_commands.go b/go/topology/cluster_commands.go index cafc52c76..c88de9e0b 100644 --- a/go/topology/cluster_commands.go +++ b/go/topology/cluster_commands.go @@ -1,8 +1,8 @@ package topology import ( - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/storage" "github.com/goraft/raft" ) diff --git a/go/topology/collection.go b/go/topology/collection.go index 4b47ae88a..cded90650 100644 --- a/go/topology/collection.go +++ b/go/topology/collection.go @@ -1,8 +1,8 @@ package topology import ( - "github.com/chrislusf/weed-fs/go/storage" - "github.com/chrislusf/weed-fs/go/util" + "github.com/mcqueenorama/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/util" ) type Collection struct { diff --git a/go/topology/data_node.go b/go/topology/data_node.go index 109bd037f..c12396e87 100644 --- a/go/topology/data_node.go +++ b/go/topology/data_node.go @@ -3,8 +3,8 @@ package topology import ( "strconv" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/storage" ) type DataNode struct { diff --git a/go/topology/node.go b/go/topology/node.go index 10955fa72..9c8e7700b 100644 --- a/go/topology/node.go +++ b/go/topology/node.go @@ -5,8 +5,8 @@ import ( "math/rand" "strings" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/storage" ) type NodeId string diff --git a/go/topology/store_replicate.go b/go/topology/store_replicate.go index 0c52f9d30..b949b33c3 100644 --- a/go/topology/store_replicate.go +++ b/go/topology/store_replicate.go @@ -5,10 +5,10 @@ import ( "net/http" "strconv" - "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" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/operation" + "github.com/mcqueenorama/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/util" ) func ReplicatedWrite(masterNode string, s *storage.Store, volumeId storage.VolumeId, needle *storage.Needle, r *http.Request) (size uint32, errorStatus string) { diff --git a/go/topology/topology.go b/go/topology/topology.go index c2073ed2f..6c9cbe3da 100644 --- a/go/topology/topology.go +++ b/go/topology/topology.go @@ -5,11 +5,11 @@ import ( "io/ioutil" "math/rand" - "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" - "github.com/chrislusf/weed-fs/go/util" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/operation" + "github.com/mcqueenorama/weed-fs/go/sequence" + "github.com/mcqueenorama/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/util" "github.com/goraft/raft" ) diff --git a/go/topology/topology_event_handling.go b/go/topology/topology_event_handling.go index 7e36568b6..49e67c8f5 100644 --- a/go/topology/topology_event_handling.go +++ b/go/topology/topology_event_handling.go @@ -4,8 +4,8 @@ import ( "math/rand" "time" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/storage" ) func (t *Topology) StartRefreshWritableVolumes(garbageThreshold string) { diff --git a/go/topology/topology_vacuum.go b/go/topology/topology_vacuum.go index d6fa2213e..9e532876f 100644 --- a/go/topology/topology_vacuum.go +++ b/go/topology/topology_vacuum.go @@ -6,9 +6,9 @@ import ( "net/url" "time" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" - "github.com/chrislusf/weed-fs/go/util" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/util" ) func batchVacuumVolumeCheck(vl *VolumeLayout, vid storage.VolumeId, locationlist *VolumeLocationList, garbageThreshold string) bool { diff --git a/go/topology/volume_growth.go b/go/topology/volume_growth.go index b1f241990..02466d539 100644 --- a/go/topology/volume_growth.go +++ b/go/topology/volume_growth.go @@ -5,8 +5,8 @@ import ( "math/rand" "sync" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/storage" ) /* diff --git a/go/topology/volume_growth_test.go b/go/topology/volume_growth_test.go index 267b36042..333ab5a3a 100644 --- a/go/topology/volume_growth_test.go +++ b/go/topology/volume_growth_test.go @@ -5,8 +5,8 @@ import ( "fmt" "testing" - "github.com/chrislusf/weed-fs/go/sequence" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/sequence" + "github.com/mcqueenorama/weed-fs/go/storage" ) var topologyLayout = ` diff --git a/go/topology/volume_layout.go b/go/topology/volume_layout.go index de72bf895..8c6f80954 100644 --- a/go/topology/volume_layout.go +++ b/go/topology/volume_layout.go @@ -5,8 +5,8 @@ import ( "math/rand" "sync" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/mcqueenorama/weed-fs/go/glog" + "github.com/mcqueenorama/weed-fs/go/storage" ) // mapping from volume to its locations, inverted from server to volume |
