aboutsummaryrefslogtreecommitdiff
path: root/weed/shell
diff options
context:
space:
mode:
Diffstat (limited to 'weed/shell')
-rw-r--r--weed/shell/command_collection_delete.go2
-rw-r--r--weed/shell/command_collection_list.go2
-rw-r--r--weed/shell/command_ec_balance.go4
-rw-r--r--weed/shell/command_ec_common.go12
-rw-r--r--weed/shell/command_ec_encode.go12
-rw-r--r--weed/shell/command_ec_rebuild.go8
-rw-r--r--weed/shell/command_ec_test.go4
-rw-r--r--weed/shell/command_fs_cat.go4
-rw-r--r--weed/shell/command_fs_du.go6
-rw-r--r--weed/shell/command_fs_ls.go4
-rw-r--r--weed/shell/command_fs_meta_load.go6
-rw-r--r--weed/shell/command_fs_meta_notify.go8
-rw-r--r--weed/shell/command_fs_meta_save.go6
-rw-r--r--weed/shell/command_fs_mv.go4
-rw-r--r--weed/shell/command_fs_tree.go4
-rw-r--r--weed/shell/command_volume_balance.go4
-rw-r--r--weed/shell/command_volume_copy.go2
-rw-r--r--weed/shell/command_volume_delete.go2
-rw-r--r--weed/shell/command_volume_fix_replication.go8
-rw-r--r--weed/shell/command_volume_list.go4
-rw-r--r--weed/shell/command_volume_mount.go6
-rw-r--r--weed/shell/command_volume_move.go6
-rw-r--r--weed/shell/command_volume_unmount.go6
-rw-r--r--weed/shell/commands.go6
24 files changed, 65 insertions, 65 deletions
diff --git a/weed/shell/command_collection_delete.go b/weed/shell/command_collection_delete.go
index d18161376..fbaddcd51 100644
--- a/weed/shell/command_collection_delete.go
+++ b/weed/shell/command_collection_delete.go
@@ -3,7 +3,7 @@ package shell
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"io"
)
diff --git a/weed/shell/command_collection_list.go b/weed/shell/command_collection_list.go
index 9607c9999..c4325c66f 100644
--- a/weed/shell/command_collection_list.go
+++ b/weed/shell/command_collection_list.go
@@ -3,7 +3,7 @@ package shell
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"io"
)
diff --git a/weed/shell/command_ec_balance.go b/weed/shell/command_ec_balance.go
index 0ff2e3963..47ae7bad3 100644
--- a/weed/shell/command_ec_balance.go
+++ b/weed/shell/command_ec_balance.go
@@ -7,8 +7,8 @@ import (
"io"
"sort"
- "github.com/joeslay/seaweedfs/weed/storage/erasure_coding"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
)
func init() {
diff --git a/weed/shell/command_ec_common.go b/weed/shell/command_ec_common.go
index c75e14feb..d0fe16a68 100644
--- a/weed/shell/command_ec_common.go
+++ b/weed/shell/command_ec_common.go
@@ -6,12 +6,12 @@ import (
"math"
"sort"
- "github.com/joeslay/seaweedfs/weed/glog"
- "github.com/joeslay/seaweedfs/weed/operation"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/storage/erasure_coding"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/operation"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
"google.golang.org/grpc"
)
diff --git a/weed/shell/command_ec_encode.go b/weed/shell/command_ec_encode.go
index 0dd3e0ea2..f07cb93f9 100644
--- a/weed/shell/command_ec_encode.go
+++ b/weed/shell/command_ec_encode.go
@@ -8,12 +8,12 @@ import (
"sync"
"time"
- "github.com/joeslay/seaweedfs/weed/operation"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/storage/erasure_coding"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
- "github.com/joeslay/seaweedfs/weed/wdclient"
+ "github.com/chrislusf/seaweedfs/weed/operation"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/wdclient"
"google.golang.org/grpc"
)
diff --git a/weed/shell/command_ec_rebuild.go b/weed/shell/command_ec_rebuild.go
index 56bcd77bb..63b7c4088 100644
--- a/weed/shell/command_ec_rebuild.go
+++ b/weed/shell/command_ec_rebuild.go
@@ -6,10 +6,10 @@ import (
"fmt"
"io"
- "github.com/joeslay/seaweedfs/weed/operation"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/storage/erasure_coding"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/operation"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
"google.golang.org/grpc"
)
diff --git a/weed/shell/command_ec_test.go b/weed/shell/command_ec_test.go
index d1a784821..9e578ed28 100644
--- a/weed/shell/command_ec_test.go
+++ b/weed/shell/command_ec_test.go
@@ -4,8 +4,8 @@ import (
"context"
"testing"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
)
func TestCommandEcBalanceSmall(t *testing.T) {
diff --git a/weed/shell/command_fs_cat.go b/weed/shell/command_fs_cat.go
index fdeda17de..66ced46c5 100644
--- a/weed/shell/command_fs_cat.go
+++ b/weed/shell/command_fs_cat.go
@@ -6,8 +6,8 @@ import (
"io"
"math"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
)
func init() {
diff --git a/weed/shell/command_fs_du.go b/weed/shell/command_fs_du.go
index 678e05eeb..5e634c82a 100644
--- a/weed/shell/command_fs_du.go
+++ b/weed/shell/command_fs_du.go
@@ -3,9 +3,9 @@ package shell
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/util"
"google.golang.org/grpc"
"io"
)
diff --git a/weed/shell/command_fs_ls.go b/weed/shell/command_fs_ls.go
index 678f0b7a1..6979635e1 100644
--- a/weed/shell/command_fs_ls.go
+++ b/weed/shell/command_fs_ls.go
@@ -3,8 +3,8 @@ package shell
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"io"
"os"
"os/user"
diff --git a/weed/shell/command_fs_meta_load.go b/weed/shell/command_fs_meta_load.go
index 2146755fc..5ea8de9f5 100644
--- a/weed/shell/command_fs_meta_load.go
+++ b/weed/shell/command_fs_meta_load.go
@@ -6,9 +6,9 @@ import (
"io"
"os"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/util"
"github.com/golang/protobuf/proto"
)
diff --git a/weed/shell/command_fs_meta_notify.go b/weed/shell/command_fs_meta_notify.go
index 5064b0033..13b272fbf 100644
--- a/weed/shell/command_fs_meta_notify.go
+++ b/weed/shell/command_fs_meta_notify.go
@@ -5,10 +5,10 @@ import (
"fmt"
"io"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/notification"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/notification"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/util"
"github.com/spf13/viper"
)
diff --git a/weed/shell/command_fs_meta_save.go b/weed/shell/command_fs_meta_save.go
index e0d24e672..e710fe297 100644
--- a/weed/shell/command_fs_meta_save.go
+++ b/weed/shell/command_fs_meta_save.go
@@ -8,9 +8,9 @@ import (
"os"
"time"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
- "github.com/joeslay/seaweedfs/weed/util"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/util"
"github.com/golang/protobuf/proto"
)
diff --git a/weed/shell/command_fs_mv.go b/weed/shell/command_fs_mv.go
index d1f04a851..67606ab53 100644
--- a/weed/shell/command_fs_mv.go
+++ b/weed/shell/command_fs_mv.go
@@ -6,8 +6,8 @@ import (
"io"
"path/filepath"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
)
func init() {
diff --git a/weed/shell/command_fs_tree.go b/weed/shell/command_fs_tree.go
index c75c7d11f..8474e43ea 100644
--- a/weed/shell/command_fs_tree.go
+++ b/weed/shell/command_fs_tree.go
@@ -3,8 +3,8 @@ package shell
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"io"
"strings"
)
diff --git a/weed/shell/command_volume_balance.go b/weed/shell/command_volume_balance.go
index b24fa43b6..d7ef0d005 100644
--- a/weed/shell/command_volume_balance.go
+++ b/weed/shell/command_volume_balance.go
@@ -9,8 +9,8 @@ import (
"sort"
"time"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
)
func init() {
diff --git a/weed/shell/command_volume_copy.go b/weed/shell/command_volume_copy.go
index e44976f88..1c83ba655 100644
--- a/weed/shell/command_volume_copy.go
+++ b/weed/shell/command_volume_copy.go
@@ -5,7 +5,7 @@ import (
"fmt"
"io"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
)
func init() {
diff --git a/weed/shell/command_volume_delete.go b/weed/shell/command_volume_delete.go
index 604b7d9c1..17d27ea3a 100644
--- a/weed/shell/command_volume_delete.go
+++ b/weed/shell/command_volume_delete.go
@@ -5,7 +5,7 @@ import (
"fmt"
"io"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
)
func init() {
diff --git a/weed/shell/command_volume_fix_replication.go b/weed/shell/command_volume_fix_replication.go
index ced0b51f6..4c7a794c0 100644
--- a/weed/shell/command_volume_fix_replication.go
+++ b/weed/shell/command_volume_fix_replication.go
@@ -3,10 +3,10 @@ package shell
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/operation"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/storage"
+ "github.com/chrislusf/seaweedfs/weed/operation"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage"
"io"
"math/rand"
"sort"
diff --git a/weed/shell/command_volume_list.go b/weed/shell/command_volume_list.go
index 7a1aa0d87..134580ffe 100644
--- a/weed/shell/command_volume_list.go
+++ b/weed/shell/command_volume_list.go
@@ -3,8 +3,8 @@ package shell
import (
"context"
"fmt"
- "github.com/joeslay/seaweedfs/weed/pb/master_pb"
- "github.com/joeslay/seaweedfs/weed/storage/erasure_coding"
+ "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
"io"
"sort"
diff --git a/weed/shell/command_volume_mount.go b/weed/shell/command_volume_mount.go
index 78d3878bc..50a307492 100644
--- a/weed/shell/command_volume_mount.go
+++ b/weed/shell/command_volume_mount.go
@@ -5,9 +5,9 @@ import (
"fmt"
"io"
- "github.com/joeslay/seaweedfs/weed/operation"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/operation"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
"google.golang.org/grpc"
)
diff --git a/weed/shell/command_volume_move.go b/weed/shell/command_volume_move.go
index bca3cebbb..08d87c988 100644
--- a/weed/shell/command_volume_move.go
+++ b/weed/shell/command_volume_move.go
@@ -7,9 +7,9 @@ import (
"log"
"time"
- "github.com/joeslay/seaweedfs/weed/operation"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/operation"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
"google.golang.org/grpc"
)
diff --git a/weed/shell/command_volume_unmount.go b/weed/shell/command_volume_unmount.go
index f6e2efdcc..8096f34d8 100644
--- a/weed/shell/command_volume_unmount.go
+++ b/weed/shell/command_volume_unmount.go
@@ -5,9 +5,9 @@ import (
"fmt"
"io"
- "github.com/joeslay/seaweedfs/weed/operation"
- "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
- "github.com/joeslay/seaweedfs/weed/storage/needle"
+ "github.com/chrislusf/seaweedfs/weed/operation"
+ "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+ "github.com/chrislusf/seaweedfs/weed/storage/needle"
"google.golang.org/grpc"
)
diff --git a/weed/shell/commands.go b/weed/shell/commands.go
index e361ae586..b642ec253 100644
--- a/weed/shell/commands.go
+++ b/weed/shell/commands.go
@@ -9,9 +9,9 @@ import (
"strconv"
"strings"
- "github.com/joeslay/seaweedfs/weed/filer2"
- "github.com/joeslay/seaweedfs/weed/pb/filer_pb"
- "github.com/joeslay/seaweedfs/weed/wdclient"
+ "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
+ "github.com/chrislusf/seaweedfs/weed/wdclient"
"google.golang.org/grpc"
)