aboutsummaryrefslogtreecommitdiff
path: root/weed/operation
diff options
context:
space:
mode:
authorj.laycock <joseph.laycock@4sightimaging.com>2019-09-12 14:18:21 +0100
committerj.laycock <joseph.laycock@4sightimaging.com>2019-09-12 14:18:21 +0100
commit6fc6322c904eeca4d7e73258cd99c04f65aa5eba (patch)
treef68de8f0009f7319fec5d3a51d6549087e7d496b /weed/operation
parentd8c34b032fb6dbfb89359da6e5e002429ad42fc2 (diff)
downloadseaweedfs-6fc6322c904eeca4d7e73258cd99c04f65aa5eba.tar.xz
seaweedfs-6fc6322c904eeca4d7e73258cd99c04f65aa5eba.zip
Change joeslay paths to chrislusf paths
Diffstat (limited to 'weed/operation')
-rw-r--r--weed/operation/assign_file_id.go6
-rw-r--r--weed/operation/chunked_file.go4
-rw-r--r--weed/operation/delete_content.go4
-rw-r--r--weed/operation/grpc_client.go8
-rw-r--r--weed/operation/lookup.go4
-rw-r--r--weed/operation/lookup_vid_cache.go2
-rw-r--r--weed/operation/stats.go2
-rw-r--r--weed/operation/submit.go4
-rw-r--r--weed/operation/sync_volume.go2
-rw-r--r--weed/operation/tail_volume.go4
-rw-r--r--weed/operation/upload_content.go6
11 files changed, 23 insertions, 23 deletions
diff --git a/weed/operation/assign_file_id.go b/weed/operation/assign_file_id.go
index dbc2b3986..4c50eaa26 100644
--- a/weed/operation/assign_file_id.go
+++ b/weed/operation/assign_file_id.go
@@ -3,9 +3,9 @@ package operation
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/security"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/security"
+ "github.com/chrislusf/seaweedfs/weed/util"
"google.golang.org/grpc"
"strings"
)
diff --git a/weed/operation/chunked_file.go b/weed/operation/chunked_file.go
index 6c0442693..295204dd8 100644
--- a/weed/operation/chunked_file.go
+++ b/weed/operation/chunked_file.go
@@ -13,8 +13,8 @@ import (
"sync"
- "github.com/joeslay/seaweedfs/weed/glog"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/util"
)
var (
diff --git a/weed/operation/delete_content.go b/weed/operation/delete_content.go
index fbacdac4d..6d84be76f 100644
--- a/weed/operation/delete_content.go
+++ b/weed/operation/delete_content.go
@@ -4,8 +4,8 @@ import (
"context"
"errors"
"fmt"
- "github.com/joeslay/seaweedfs/weed/glog"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"google.golang.org/grpc"
"net/http"
"strings"
diff --git a/weed/operation/grpc_client.go b/weed/operation/grpc_client.go
index 1eb493115..f6b2b69e9 100644
--- a/weed/operation/grpc_client.go
+++ b/weed/operation/grpc_client.go
@@ -3,10 +3,10 @@ package operation
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/glog"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/util"
"google.golang.org/grpc"
"strconv"
"strings"
diff --git a/weed/operation/lookup.go b/weed/operation/lookup.go
index 7a876d543..d0773e7fd 100644
--- a/weed/operation/lookup.go
+++ b/weed/operation/lookup.go
@@ -11,8 +11,8 @@ import (
"strings"
"time"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/util"
)
type Location struct {
diff --git a/weed/operation/lookup_vid_cache.go b/weed/operation/lookup_vid_cache.go
index 181d2d1bf..ccc1f2beb 100644
--- a/weed/operation/lookup_vid_cache.go
+++ b/weed/operation/lookup_vid_cache.go
@@ -6,7 +6,7 @@ import (
"sync"
"time"
- "github.com/joeslay/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/glog"
)
var ErrorNotFound = errors.New("not found")
diff --git a/weed/operation/stats.go b/weed/operation/stats.go
index 432c95376..b69a33750 100644
--- a/weed/operation/stats.go
+++ b/weed/operation/stats.go
@@ -4,7 +4,7 @@ import (
"context"
"google.golang.org/grpc"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
)
func Statistics(server string, grpcDialOption grpc.DialOption, req *master_pb.StatisticsRequest) (resp *master_pb.StatisticsResponse, err error) {
diff --git a/weed/operation/submit.go b/weed/operation/submit.go
index 12be0262d..bdf59d966 100644
--- a/weed/operation/submit.go
+++ b/weed/operation/submit.go
@@ -11,8 +11,8 @@ import (
"strconv"
"strings"
- "github.com/joeslay/seaweedfs/weed/glog"
- "github.com/joeslay/seaweedfs/weed/security"
+ "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/security"
)
type FilePart struct {
diff --git a/weed/operation/sync_volume.go b/weed/operation/sync_volume.go
index 79436440c..5562f12ab 100644
--- a/weed/operation/sync_volume.go
+++ b/weed/operation/sync_volume.go
@@ -2,7 +2,7 @@ package operation
import (
"context"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"google.golang.org/grpc"
)
diff --git a/weed/operation/tail_volume.go b/weed/operation/tail_volume.go
index 5298233bc..b53f18ce1 100644
--- a/weed/operation/tail_volume.go
+++ b/weed/operation/tail_volume.go
@@ -5,8 +5,8 @@ import (
"fmt"
"io"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
"google.golang.org/grpc"
)
diff --git a/weed/operation/upload_content.go b/weed/operation/upload_content.go
index 68d6d7a75..c387d0230 100644
--- a/weed/operation/upload_content.go
+++ b/weed/operation/upload_content.go
@@ -16,9 +16,9 @@ import (
"path/filepath"
"strings"
- "github.com/joeslay/seaweedfs/weed/glog"
- "github.com/joeslay/seaweedfs/weed/security"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/security"
+ "github.com/chrislusf/seaweedfs/weed/util"
)
type UploadResult struct {