aboutsummaryrefslogtreecommitdiff
path: root/go/operation
diff options
context:
space:
mode:
authorBrian McQueen <bmcquee@l-sclX1Q0DV7-M.local>2014-12-14 00:35:26 -0800
committerBrian McQueen <bmcquee@l-sclX1Q0DV7-M.local>2014-12-14 00:35:26 -0800
commitd56c748fa889a119139c3a40528a18e8ce4123ad (patch)
tree76d3cbaa6f4124c23243a68e67ad1f1d6d14c91b /go/operation
parent57ec736941a554919cfed2bd2ac2bb694095a7d2 (diff)
downloadseaweedfs-d56c748fa889a119139c3a40528a18e8ce4123ad.tar.xz
seaweedfs-d56c748fa889a119139c3a40528a18e8ce4123ad.zip
switch it back to chris's repo
Diffstat (limited to 'go/operation')
-rw-r--r--go/operation/assign_file_id.go4
-rw-r--r--go/operation/delete_content.go2
-rw-r--r--go/operation/list_masters.go4
-rw-r--r--go/operation/lookup.go2
-rw-r--r--go/operation/submit.go2
-rw-r--r--go/operation/upload_content.go2
6 files changed, 8 insertions, 8 deletions
diff --git a/go/operation/assign_file_id.go b/go/operation/assign_file_id.go
index 4fe571d59..672bfa99c 100644
--- a/go/operation/assign_file_id.go
+++ b/go/operation/assign_file_id.go
@@ -6,8 +6,8 @@ import (
"net/url"
"strconv"
- "github.com/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/weed-fs/go/util"
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/util"
)
type AssignResult struct {
diff --git a/go/operation/delete_content.go b/go/operation/delete_content.go
index 06787dabe..416a852b3 100644
--- a/go/operation/delete_content.go
+++ b/go/operation/delete_content.go
@@ -7,7 +7,7 @@ import (
"strings"
"sync"
- "github.com/mcqueenorama/weed-fs/go/util"
+ "github.com/chrislusf/weed-fs/go/util"
)
type DeleteResult struct {
diff --git a/go/operation/list_masters.go b/go/operation/list_masters.go
index 542a3cb38..7ada94243 100644
--- a/go/operation/list_masters.go
+++ b/go/operation/list_masters.go
@@ -3,8 +3,8 @@ package operation
import (
"encoding/json"
- "github.com/mcqueenorama/weed-fs/go/glog"
- "github.com/mcqueenorama/weed-fs/go/util"
+ "github.com/chrislusf/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/util"
)
type ClusterStatusResult struct {
diff --git a/go/operation/lookup.go b/go/operation/lookup.go
index 2fd238e7a..e6b6658da 100644
--- a/go/operation/lookup.go
+++ b/go/operation/lookup.go
@@ -9,7 +9,7 @@ import (
"strings"
"time"
- "github.com/mcqueenorama/weed-fs/go/util"
+ "github.com/chrislusf/weed-fs/go/util"
)
type Location struct {
diff --git a/go/operation/submit.go b/go/operation/submit.go
index c4f64f5a2..62db46617 100644
--- a/go/operation/submit.go
+++ b/go/operation/submit.go
@@ -9,7 +9,7 @@ import (
"strconv"
"strings"
- "github.com/mcqueenorama/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/glog"
)
type FilePart struct {
diff --git a/go/operation/upload_content.go b/go/operation/upload_content.go
index 297d78a04..480d76dca 100644
--- a/go/operation/upload_content.go
+++ b/go/operation/upload_content.go
@@ -14,7 +14,7 @@ import (
"path/filepath"
"strings"
- "github.com/mcqueenorama/weed-fs/go/glog"
+ "github.com/chrislusf/weed-fs/go/glog"
)
type UploadResult struct {