aboutsummaryrefslogtreecommitdiff
path: root/weed/cluster
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-07-29 00:17:28 -0700
committerchrislu <chris.lu@gmail.com>2022-07-29 00:17:28 -0700
commit26dbc6c905189ec471801447e382473ed5b15073 (patch)
tree94274b04a53b7acb1cb5e822172a4962039d8c5d /weed/cluster
parent5c6c1e7e3085a4a41521bbcc360868a185f9a91c (diff)
downloadseaweedfs-26dbc6c905189ec471801447e382473ed5b15073.tar.xz
seaweedfs-26dbc6c905189ec471801447e382473ed5b15073.zip
move to https://github.com/seaweedfs/seaweedfs
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"
)