diff options
Diffstat (limited to 'weed/command')
| -rw-r--r-- | weed/command/backup.go | 10 | ||||
| -rw-r--r-- | weed/command/benchmark.go | 10 | ||||
| -rw-r--r-- | weed/command/compact.go | 6 | ||||
| -rw-r--r-- | weed/command/download.go | 4 | ||||
| -rw-r--r-- | weed/command/export.go | 8 | ||||
| -rw-r--r-- | weed/command/filer.go | 10 | ||||
| -rw-r--r-- | weed/command/filer_copy.go | 10 | ||||
| -rw-r--r-- | weed/command/filer_replication.go | 20 | ||||
| -rw-r--r-- | weed/command/fix.go | 8 | ||||
| -rw-r--r-- | weed/command/master.go | 10 | ||||
| -rw-r--r-- | weed/command/mount_std.go | 8 | ||||
| -rw-r--r-- | weed/command/s3.go | 8 | ||||
| -rw-r--r-- | weed/command/server.go | 4 | ||||
| -rw-r--r-- | weed/command/shell.go | 6 | ||||
| -rw-r--r-- | weed/command/upload.go | 6 | ||||
| -rw-r--r-- | weed/command/version.go | 2 | ||||
| -rw-r--r-- | weed/command/volume.go | 12 | ||||
| -rw-r--r-- | weed/command/volume_test.go | 2 | ||||
| -rw-r--r-- | weed/command/webdav.go | 8 |
19 files changed, 76 insertions, 76 deletions
diff --git a/weed/command/backup.go b/weed/command/backup.go index 9849f566e..505de4ae6 100644 --- a/weed/command/backup.go +++ b/weed/command/backup.go @@ -3,13 +3,13 @@ package command import ( "fmt" - "github.com/joeslay/seaweedfs/weed/security" - "github.com/joeslay/seaweedfs/weed/storage/needle" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/storage/needle" + "github.com/chrislusf/seaweedfs/weed/util" "github.com/spf13/viper" - "github.com/joeslay/seaweedfs/weed/operation" - "github.com/joeslay/seaweedfs/weed/storage" + "github.com/chrislusf/seaweedfs/weed/operation" + "github.com/chrislusf/seaweedfs/weed/storage" ) var ( diff --git a/weed/command/benchmark.go b/weed/command/benchmark.go index bf655caa0..dd0fdb88e 100644 --- a/weed/command/benchmark.go +++ b/weed/command/benchmark.go @@ -18,11 +18,11 @@ import ( "github.com/spf13/viper" "google.golang.org/grpc" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/operation" - "github.com/joeslay/seaweedfs/weed/security" - "github.com/joeslay/seaweedfs/weed/util" - "github.com/joeslay/seaweedfs/weed/wdclient" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/operation" + "github.com/chrislusf/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/wdclient" ) type BenchmarkOptions struct { diff --git a/weed/command/compact.go b/weed/command/compact.go index 03f1a14db..4a54f5670 100644 --- a/weed/command/compact.go +++ b/weed/command/compact.go @@ -1,9 +1,9 @@ package command import ( - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/storage" - "github.com/joeslay/seaweedfs/weed/storage/needle" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/storage" + "github.com/chrislusf/seaweedfs/weed/storage/needle" ) func init() { diff --git a/weed/command/download.go b/weed/command/download.go index c57517d00..b3e33defd 100644 --- a/weed/command/download.go +++ b/weed/command/download.go @@ -8,8 +8,8 @@ import ( "path" "strings" - "github.com/joeslay/seaweedfs/weed/operation" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/operation" + "github.com/chrislusf/seaweedfs/weed/util" ) var ( diff --git a/weed/command/export.go b/weed/command/export.go index 43aa38872..7e94ec11c 100644 --- a/weed/command/export.go +++ b/weed/command/export.go @@ -14,10 +14,10 @@ import ( "io" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/storage" - "github.com/joeslay/seaweedfs/weed/storage/needle" - "github.com/joeslay/seaweedfs/weed/storage/types" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/storage" + "github.com/chrislusf/seaweedfs/weed/storage/needle" + "github.com/chrislusf/seaweedfs/weed/storage/types" ) const ( diff --git a/weed/command/filer.go b/weed/command/filer.go index ddd60d375..b1ceb46f5 100644 --- a/weed/command/filer.go +++ b/weed/command/filer.go @@ -6,13 +6,13 @@ import ( "strings" "time" - "github.com/joeslay/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/security" "github.com/spf13/viper" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/pb/filer_pb" - "github.com/joeslay/seaweedfs/weed/server" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/pb/filer_pb" + "github.com/chrislusf/seaweedfs/weed/server" + "github.com/chrislusf/seaweedfs/weed/util" "google.golang.org/grpc/reflection" ) diff --git a/weed/command/filer_copy.go b/weed/command/filer_copy.go index 3aa845eba..19aceb211 100644 --- a/weed/command/filer_copy.go +++ b/weed/command/filer_copy.go @@ -14,11 +14,11 @@ import ( "sync" "time" - "github.com/joeslay/seaweedfs/weed/operation" - "github.com/joeslay/seaweedfs/weed/pb/filer_pb" - "github.com/joeslay/seaweedfs/weed/security" - "github.com/joeslay/seaweedfs/weed/util" - "github.com/joeslay/seaweedfs/weed/wdclient" + "github.com/chrislusf/seaweedfs/weed/operation" + "github.com/chrislusf/seaweedfs/weed/pb/filer_pb" + "github.com/chrislusf/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/wdclient" "github.com/spf13/viper" "google.golang.org/grpc" ) diff --git a/weed/command/filer_replication.go b/weed/command/filer_replication.go index 1040e2174..c6e7f5dba 100644 --- a/weed/command/filer_replication.go +++ b/weed/command/filer_replication.go @@ -4,16 +4,16 @@ import ( "context" "strings" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/replication" - "github.com/joeslay/seaweedfs/weed/replication/sink" - _ "github.com/joeslay/seaweedfs/weed/replication/sink/azuresink" - _ "github.com/joeslay/seaweedfs/weed/replication/sink/b2sink" - _ "github.com/joeslay/seaweedfs/weed/replication/sink/filersink" - _ "github.com/joeslay/seaweedfs/weed/replication/sink/gcssink" - _ "github.com/joeslay/seaweedfs/weed/replication/sink/s3sink" - "github.com/joeslay/seaweedfs/weed/replication/sub" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/replication" + "github.com/chrislusf/seaweedfs/weed/replication/sink" + _ "github.com/chrislusf/seaweedfs/weed/replication/sink/azuresink" + _ "github.com/chrislusf/seaweedfs/weed/replication/sink/b2sink" + _ "github.com/chrislusf/seaweedfs/weed/replication/sink/filersink" + _ "github.com/chrislusf/seaweedfs/weed/replication/sink/gcssink" + _ "github.com/chrislusf/seaweedfs/weed/replication/sink/s3sink" + "github.com/chrislusf/seaweedfs/weed/replication/sub" + "github.com/chrislusf/seaweedfs/weed/util" "github.com/spf13/viper" ) diff --git a/weed/command/fix.go b/weed/command/fix.go index c6d017d07..bf33490cc 100644 --- a/weed/command/fix.go +++ b/weed/command/fix.go @@ -5,10 +5,10 @@ import ( "path" "strconv" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/storage" - "github.com/joeslay/seaweedfs/weed/storage/needle" - "github.com/joeslay/seaweedfs/weed/storage/types" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/storage" + "github.com/chrislusf/seaweedfs/weed/storage/needle" + "github.com/chrislusf/seaweedfs/weed/storage/types" ) func init() { diff --git a/weed/command/master.go b/weed/command/master.go index 3e4fc15e8..3d33f4f7a 100644 --- a/weed/command/master.go +++ b/weed/command/master.go @@ -8,11 +8,11 @@ import ( "strings" "github.com/chrislusf/raft/protobuf" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/pb/master_pb" - "github.com/joeslay/seaweedfs/weed/security" - "github.com/joeslay/seaweedfs/weed/server" - "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/security" + "github.com/chrislusf/seaweedfs/weed/server" + "github.com/chrislusf/seaweedfs/weed/util" "github.com/gorilla/mux" "github.com/spf13/viper" "google.golang.org/grpc/reflection" diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go index 4dc21d334..0519ae7b8 100644 --- a/weed/command/mount_std.go +++ b/weed/command/mount_std.go @@ -12,13 +12,13 @@ import ( "strings" "time" - "github.com/joeslay/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/security" "github.com/jacobsa/daemonize" "github.com/spf13/viper" - "github.com/joeslay/seaweedfs/weed/filesys" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/filesys" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/util" "github.com/seaweedfs/fuse" "github.com/seaweedfs/fuse/fs" ) diff --git a/weed/command/s3.go b/weed/command/s3.go index c3f2d61d4..e004bb066 100644 --- a/weed/command/s3.go +++ b/weed/command/s3.go @@ -4,14 +4,14 @@ import ( "net/http" "time" - "github.com/joeslay/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/security" "github.com/spf13/viper" "fmt" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/s3api" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/s3api" + "github.com/chrislusf/seaweedfs/weed/util" "github.com/gorilla/mux" ) diff --git a/weed/command/server.go b/weed/command/server.go index dea5c49c4..87f404ed3 100644 --- a/weed/command/server.go +++ b/weed/command/server.go @@ -8,8 +8,8 @@ import ( "strings" "time" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/util" ) type ServerOptions struct { diff --git a/weed/command/shell.go b/weed/command/shell.go index 2adac4d0e..79f8b8bf9 100644 --- a/weed/command/shell.go +++ b/weed/command/shell.go @@ -1,9 +1,9 @@ package command import ( - "github.com/joeslay/seaweedfs/weed/security" - "github.com/joeslay/seaweedfs/weed/shell" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/shell" + "github.com/chrislusf/seaweedfs/weed/util" "github.com/spf13/viper" ) diff --git a/weed/command/upload.go b/weed/command/upload.go index 861f6261d..25e938d9b 100644 --- a/weed/command/upload.go +++ b/weed/command/upload.go @@ -6,11 +6,11 @@ import ( "os" "path/filepath" - "github.com/joeslay/seaweedfs/weed/security" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/util" "github.com/spf13/viper" - "github.com/joeslay/seaweedfs/weed/operation" + "github.com/chrislusf/seaweedfs/weed/operation" ) var ( diff --git a/weed/command/version.go b/weed/command/version.go index e8b417d1c..8fdd68ec8 100644 --- a/weed/command/version.go +++ b/weed/command/version.go @@ -4,7 +4,7 @@ import ( "fmt" "runtime" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/util" ) var cmdVersion = &Command{ diff --git a/weed/command/volume.go b/weed/command/volume.go index 0a0e16ac4..3c1aa2b50 100644 --- a/weed/command/volume.go +++ b/weed/command/volume.go @@ -9,14 +9,14 @@ import ( "strings" "time" - "github.com/joeslay/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/security" "github.com/spf13/viper" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb" - "github.com/joeslay/seaweedfs/weed/server" - "github.com/joeslay/seaweedfs/weed/storage" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb" + "github.com/chrislusf/seaweedfs/weed/server" + "github.com/chrislusf/seaweedfs/weed/storage" + "github.com/chrislusf/seaweedfs/weed/util" "google.golang.org/grpc/reflection" ) diff --git a/weed/command/volume_test.go b/weed/command/volume_test.go index 65b96a7c2..7399f1248 100644 --- a/weed/command/volume_test.go +++ b/weed/command/volume_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/joeslay/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/glog" ) func TestXYZ(t *testing.T) { diff --git a/weed/command/webdav.go b/weed/command/webdav.go index 313aa1382..371c4a9ad 100644 --- a/weed/command/webdav.go +++ b/weed/command/webdav.go @@ -7,10 +7,10 @@ import ( "strconv" "time" - "github.com/joeslay/seaweedfs/weed/glog" - "github.com/joeslay/seaweedfs/weed/security" - "github.com/joeslay/seaweedfs/weed/server" - "github.com/joeslay/seaweedfs/weed/util" + "github.com/chrislusf/seaweedfs/weed/glog" + "github.com/chrislusf/seaweedfs/weed/security" + "github.com/chrislusf/seaweedfs/weed/server" + "github.com/chrislusf/seaweedfs/weed/util" "github.com/spf13/viper" ) |
