aboutsummaryrefslogtreecommitdiff
path: root/go/topology
diff options
context:
space:
mode:
authorwyy <wuyanyi09@gmail.com>2014-09-25 16:57:22 +0800
committerwyy <wuyanyi09@gmail.com>2014-09-25 16:57:22 +0800
commit4126280d5559a364c6e0f31ab7a57bc3b1d15d56 (patch)
treecd0e4778f5cd47e36c2d5a161cf43d56e51dee9e /go/topology
parentd39c62bbed9b56164ab92101cf7ec46d4a1bfeee (diff)
downloadseaweedfs-4126280d5559a364c6e0f31ab7a57bc3b1d15d56.tar.xz
seaweedfs-4126280d5559a364c6e0f31ab7a57bc3b1d15d56.zip
use github.com/chrislusf instead of github.com/aszxqw
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.go2
-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.go8
-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, 28 insertions, 28 deletions
diff --git a/go/topology/allocate_volume.go b/go/topology/allocate_volume.go
index eaeae4427..6562e9ac5 100644
--- a/go/topology/allocate_volume.go
+++ b/go/topology/allocate_volume.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/storage"
- "github.com/aszxqw/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 369c0b9b9..cafc52c76 100644
--- a/go/topology/cluster_commands.go
+++ b/go/topology/cluster_commands.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/glog"
- "github.com/aszxqw/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 72ac86522..506f43fbf 100644
--- a/go/topology/collection.go
+++ b/go/topology/collection.go
@@ -1,7 +1,7 @@
package topology
import (
- "github.com/aszxqw/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 5c16cf85d..c3b90470f 100644
--- a/go/topology/data_node.go
+++ b/go/topology/data_node.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/glog"
- "github.com/aszxqw/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 12e9a709a..54118802e 100644
--- a/go/topology/node.go
+++ b/go/topology/node.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/glog"
- "github.com/aszxqw/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 fefaea8a6..6ea019bd8 100644
--- a/go/topology/store_replicate.go
+++ b/go/topology/store_replicate.go
@@ -2,10 +2,10 @@ package topology
import (
"bytes"
- "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"
+ "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 77c9558bb..c90e8de0b 100644
--- a/go/topology/topology.go
+++ b/go/topology/topology.go
@@ -1,10 +1,10 @@
package topology
import (
- "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"
+ "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 61e6f5ffa..eb4491484 100644
--- a/go/topology/topology_event_handling.go
+++ b/go/topology/topology_event_handling.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/glog"
- "github.com/aszxqw/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 bdc0c38f9..72846f20b 100644
--- a/go/topology/topology_vacuum.go
+++ b/go/topology/topology_vacuum.go
@@ -1,9 +1,9 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/glog"
- "github.com/aszxqw/weed-fs/go/storage"
- "github.com/aszxqw/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 e083a8531..2859d3992 100644
--- a/go/topology/volume_growth.go
+++ b/go/topology/volume_growth.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/glog"
- "github.com/aszxqw/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 ba1e43ff2..5581c87ce 100644
--- a/go/topology/volume_growth_test.go
+++ b/go/topology/volume_growth_test.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/sequence"
- "github.com/aszxqw/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 35f45c08d..7bb0cf7e3 100644
--- a/go/topology/volume_layout.go
+++ b/go/topology/volume_layout.go
@@ -1,8 +1,8 @@
package topology
import (
- "github.com/aszxqw/weed-fs/go/glog"
- "github.com/aszxqw/weed-fs/go/storage"
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/storage"
"errors"
"math/rand"
"sync"