aboutsummaryrefslogtreecommitdiff
path: root/weed/cluster
diff options
context:
space:
mode:
Diffstat (limited to 'weed/cluster')
-rw-r--r--weed/cluster/cluster.go4
-rw-r--r--weed/cluster/cluster_test.go2
-rw-r--r--weed/cluster/master_client.go6
3 files changed, 6 insertions, 6 deletions
diff --git a/weed/cluster/cluster.go b/weed/cluster/cluster.go
index c320065d5..f0d8e3fb7 100644
--- a/weed/cluster/cluster.go
+++ b/weed/cluster/cluster.go
@@ -1,8 +1,8 @@
package cluster
import (
- "github.com/chrislusf/seaweedfs/weed/pb"
- "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/seaweedfs/seaweedfs/weed/pb"
+ "github.com/seaweedfs/seaweedfs/weed/pb/master_pb"
"math"
"sync"
"time"
diff --git a/weed/cluster/cluster_test.go b/weed/cluster/cluster_test.go
index 57ee4a023..53e90a7b8 100644
--- a/weed/cluster/cluster_test.go
+++ b/weed/cluster/cluster_test.go
@@ -1,7 +1,7 @@
package cluster
import (
- "github.com/chrislusf/seaweedfs/weed/pb"
+ "github.com/seaweedfs/seaweedfs/weed/pb"
"github.com/stretchr/testify/assert"
"strconv"
"sync"
diff --git a/weed/cluster/master_client.go b/weed/cluster/master_client.go
index b9b1673f3..d1e769c1d 100644
--- a/weed/cluster/master_client.go
+++ b/weed/cluster/master_client.go
@@ -2,9 +2,9 @@ package cluster
import (
"context"
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/pb"
- "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/pb"
+ "github.com/seaweedfs/seaweedfs/weed/pb/master_pb"
"google.golang.org/grpc"
)