diff options
| author | Stuart P. Bentley <stuart@testtrack4.com> | 2015-04-16 19:18:06 +0000 |
|---|---|---|
| committer | Stuart P. Bentley <stuart@testtrack4.com> | 2015-04-16 19:18:06 +0000 |
| commit | f0c2a2dcb314ffb9c2f33eb159edc81ab3903a6c (patch) | |
| tree | 3bff62cabe6fedda2819838b9c9f2e8440c782f0 /go/topology | |
| parent | 41f29e9d8c8a910d3a3061dd167b7f448e243d0c (diff) | |
| download | seaweedfs-f0c2a2dcb314ffb9c2f33eb159edc81ab3903a6c.tar.xz seaweedfs-f0c2a2dcb314ffb9c2f33eb159edc81ab3903a6c.zip | |
Change all chrislusf/weed-fs links to point to chrislu/seaweedfs
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 | 10 | ||||
| -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, 31 insertions, 31 deletions
diff --git a/go/topology/allocate_volume.go b/go/topology/allocate_volume.go index be478d0cf..f014c3527 100644 --- a/go/topology/allocate_volume.go +++ b/go/topology/allocate_volume.go @@ -6,8 +6,8 @@ import ( "fmt" "net/url" - "github.com/chrislusf/weed-fs/go/storage" - "github.com/chrislusf/weed-fs/go/util" + "github.com/chrislusf/seaweedfs/go/storage" + "github.com/chrislusf/seaweedfs/go/util" ) type AllocateVolumeResult struct { diff --git a/go/topology/cluster_commands.go b/go/topology/cluster_commands.go index cafc52c76..096bcd2e5 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/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/storage" "github.com/goraft/raft" ) diff --git a/go/topology/collection.go b/go/topology/collection.go index 5437ffd79..376b62405 100644 --- a/go/topology/collection.go +++ b/go/topology/collection.go @@ -3,8 +3,8 @@ package topology import ( "fmt" - "github.com/chrislusf/weed-fs/go/storage" - "github.com/chrislusf/weed-fs/go/util" + "github.com/chrislusf/seaweedfs/go/storage" + "github.com/chrislusf/seaweedfs/go/util" ) type Collection struct { diff --git a/go/topology/data_node.go b/go/topology/data_node.go index 27461945b..fe0926e85 100644 --- a/go/topology/data_node.go +++ b/go/topology/data_node.go @@ -4,8 +4,8 @@ import ( "fmt" "strconv" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/storage" ) type DataNode struct { diff --git a/go/topology/node.go b/go/topology/node.go index 72d989b83..3b6d55ce9 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/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/storage" ) type NodeId string diff --git a/go/topology/store_replicate.go b/go/topology/store_replicate.go index c44877da1..dc26dade0 100644 --- a/go/topology/store_replicate.go +++ b/go/topology/store_replicate.go @@ -5,11 +5,11 @@ import ( "net/http" "strconv" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/operation" - "github.com/chrislusf/weed-fs/go/security" - "github.com/chrislusf/weed-fs/go/storage" - "github.com/chrislusf/weed-fs/go/util" + "github.com/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/operation" + "github.com/chrislusf/seaweedfs/go/security" + "github.com/chrislusf/seaweedfs/go/storage" + "github.com/chrislusf/seaweedfs/go/util" ) func ReplicatedWrite(masterNode string, s *storage.Store, diff --git a/go/topology/topology.go b/go/topology/topology.go index f12261081..2f42a4c5a 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/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/operation" + "github.com/chrislusf/seaweedfs/go/sequence" + "github.com/chrislusf/seaweedfs/go/storage" + "github.com/chrislusf/seaweedfs/go/util" "github.com/goraft/raft" ) diff --git a/go/topology/topology_event_handling.go b/go/topology/topology_event_handling.go index 7e36568b6..5f5faf04e 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/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/storage" ) func (t *Topology) StartRefreshWritableVolumes(garbageThreshold string) { diff --git a/go/topology/topology_vacuum.go b/go/topology/topology_vacuum.go index d6fa2213e..675523697 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/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/storage" + "github.com/chrislusf/seaweedfs/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 7f5fca8ca..a25ba116b 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/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/storage" ) /* diff --git a/go/topology/volume_growth_test.go b/go/topology/volume_growth_test.go index 267b36042..15abfcc73 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/chrislusf/seaweedfs/go/sequence" + "github.com/chrislusf/seaweedfs/go/storage" ) var topologyLayout = ` diff --git a/go/topology/volume_layout.go b/go/topology/volume_layout.go index 14e112141..e976c651e 100644 --- a/go/topology/volume_layout.go +++ b/go/topology/volume_layout.go @@ -6,8 +6,8 @@ import ( "math/rand" "sync" - "github.com/chrislusf/weed-fs/go/glog" - "github.com/chrislusf/weed-fs/go/storage" + "github.com/chrislusf/seaweedfs/go/glog" + "github.com/chrislusf/seaweedfs/go/storage" ) // mapping from volume to its locations, inverted from server to volume |
