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.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 4aeef35f7..6562e9ac5 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/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 703435173..cafc52c76 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/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 c014231af..506f43fbf 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/chrislusf/weed-fs/go/storage"
)
type Collection struct {
diff --git a/go/topology/data_node.go b/go/topology/data_node.go
index c67c5c1c1..c3b90470f 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/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 c52414008..54118802e 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/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 a982cebe5..6ea019bd8 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/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 acdef5e36..c90e8de0b 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/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 1e630e149..eb4491484 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/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 9eaca37d4..72846f20b 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/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 778aa038a..2859d3992 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/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 d2913ef5c..5581c87ce 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/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 1e55072a3..7bb0cf7e3 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/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/storage"
"errors"
"math/rand"
"sync"