aboutsummaryrefslogtreecommitdiff
path: root/go/topology
diff options
context:
space:
mode:
Diffstat (limited to 'go/topology')
-rw-r--r--go/topology/allocate_volume.go4
-rw-r--r--go/topology/cluster_commands.go4
-rw-r--r--go/topology/collection.go4
-rw-r--r--go/topology/data_node.go4
-rw-r--r--go/topology/node.go4
-rw-r--r--go/topology/store_replicate.go8
-rw-r--r--go/topology/topology.go10
-rw-r--r--go/topology/topology_event_handling.go4
-rw-r--r--go/topology/topology_vacuum.go6
-rw-r--r--go/topology/volume_growth.go4
-rw-r--r--go/topology/volume_growth_test.go4
-rw-r--r--go/topology/volume_layout.go4
12 files changed, 30 insertions, 30 deletions
diff --git a/go/topology/allocate_volume.go b/go/topology/allocate_volume.go
index 38843dd54..a791b4c1c 100644
--- a/go/topology/allocate_volume.go
+++ b/go/topology/allocate_volume.go
@@ -5,8 +5,8 @@ import (
"errors"
"net/url"
- "github.com/mcqueenorama/weed-fs/go/storage"
- "github.com/mcqueenorama/weed-fs/go/util"
+ "github.com/chrislusf/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/util"
)
type AllocateVolumeResult struct {
diff --git a/go/topology/cluster_commands.go b/go/topology/cluster_commands.go
index c88de9e0b..cafc52c76 100644
--- a/go/topology/cluster_commands.go
+++ b/go/topology/cluster_commands.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/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 cded90650..4b47ae88a 100644
--- a/go/topology/collection.go
+++ b/go/topology/collection.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/mcqueenorama/weed-fs/go/storage"
- "github.com/mcqueenorama/weed-fs/go/util"
+ "github.com/chrislusf/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/util"
)
type Collection struct {
diff --git a/go/topology/data_node.go b/go/topology/data_node.go
index c12396e87..109bd037f 100644
--- a/go/topology/data_node.go
+++ b/go/topology/data_node.go
@@ -3,8 +3,8 @@ package topology
import (
"strconv"
- "github.com/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/storage"
)
type DataNode struct {
diff --git a/go/topology/node.go b/go/topology/node.go
index 9c8e7700b..10955fa72 100644
--- a/go/topology/node.go
+++ b/go/topology/node.go
@@ -5,8 +5,8 @@ import (
"math/rand"
"strings"
- "github.com/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/storage"
)
type NodeId string
diff --git a/go/topology/store_replicate.go b/go/topology/store_replicate.go
index b949b33c3..0c52f9d30 100644
--- a/go/topology/store_replicate.go
+++ b/go/topology/store_replicate.go
@@ -5,10 +5,10 @@ import (
"net/http"
"strconv"
- "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"
+ "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"
)
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 6c9cbe3da..c2073ed2f 100644
--- a/go/topology/topology.go
+++ b/go/topology/topology.go
@@ -5,11 +5,11 @@ import (
"io/ioutil"
"math/rand"
- "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/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/goraft/raft"
)
diff --git a/go/topology/topology_event_handling.go b/go/topology/topology_event_handling.go
index 49e67c8f5..7e36568b6 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/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/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 9e532876f..d6fa2213e 100644
--- a/go/topology/topology_vacuum.go
+++ b/go/topology/topology_vacuum.go
@@ -6,9 +6,9 @@ import (
"net/url"
"time"
- "github.com/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/weed-fs/go/storage"
- "github.com/mcqueenorama/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"
)
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 02466d539..b1f241990 100644
--- a/go/topology/volume_growth.go
+++ b/go/topology/volume_growth.go
@@ -5,8 +5,8 @@ import (
"math/rand"
"sync"
- "github.com/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/storage"
)
/*
diff --git a/go/topology/volume_growth_test.go b/go/topology/volume_growth_test.go
index 333ab5a3a..267b36042 100644
--- a/go/topology/volume_growth_test.go
+++ b/go/topology/volume_growth_test.go
@@ -5,8 +5,8 @@ import (
"fmt"
"testing"
- "github.com/mcqueenorama/weed-fs/go/sequence"
- "github.com/mcqueenorama/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/sequence"
+ "github.com/chrislusf/weed-fs/go/storage"
)
var topologyLayout = `
diff --git a/go/topology/volume_layout.go b/go/topology/volume_layout.go
index 8c6f80954..de72bf895 100644
--- a/go/topology/volume_layout.go
+++ b/go/topology/volume_layout.go
@@ -5,8 +5,8 @@ import (
"math/rand"
"sync"
- "github.com/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/storage"
)
// mapping from volume to its locations, inverted from server to volume