aboutsummaryrefslogtreecommitdiff
path: root/weed/util
diff options
context:
space:
mode:
Diffstat (limited to 'weed/util')
-rw-r--r--weed/util/chunk_cache/chunk_cache.go4
-rw-r--r--weed/util/chunk_cache/chunk_cache_on_disk.go10
-rw-r--r--weed/util/chunk_cache/chunk_cache_on_disk_test.go4
-rw-r--r--weed/util/chunk_cache/on_disk_cache_layer.go6
-rw-r--r--weed/util/cipher.go2
-rw-r--r--weed/util/compression.go2
-rw-r--r--weed/util/config.go2
-rw-r--r--weed/util/file_util.go2
-rw-r--r--weed/util/grace/pprof.go2
-rw-r--r--weed/util/http_util.go6
-rw-r--r--weed/util/log_buffer/log_buffer.go6
-rw-r--r--weed/util/log_buffer/log_buffer_test.go2
-rw-r--r--weed/util/log_buffer/log_read.go6
-rw-r--r--weed/util/mem/slot_pool.go2
-rw-r--r--weed/util/minfreespace.go2
-rw-r--r--weed/util/net_timeout.go4
-rw-r--r--weed/util/network.go2
-rw-r--r--weed/util/retry.go2
-rw-r--r--weed/util/skiplist/name_batch.go2
-rw-r--r--weed/util/skiplist/name_list_serde.go2
-rw-r--r--weed/util/skiplist/skiplist.proto4
21 files changed, 37 insertions, 37 deletions
diff --git a/weed/util/chunk_cache/chunk_cache.go b/weed/util/chunk_cache/chunk_cache.go
index 3f3b264b1..158f47cfc 100644
--- a/weed/util/chunk_cache/chunk_cache.go
+++ b/weed/util/chunk_cache/chunk_cache.go
@@ -4,8 +4,8 @@ import (
"errors"
"sync"
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/storage/needle"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/storage/needle"
)
var ErrorOutOfBounds = errors.New("attempt to read out of bounds")
diff --git a/weed/util/chunk_cache/chunk_cache_on_disk.go b/weed/util/chunk_cache/chunk_cache_on_disk.go
index 100b5919e..9252f99eb 100644
--- a/weed/util/chunk_cache/chunk_cache_on_disk.go
+++ b/weed/util/chunk_cache/chunk_cache_on_disk.go
@@ -7,11 +7,11 @@ import (
"github.com/syndtr/goleveldb/leveldb/opt"
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/storage"
- "github.com/chrislusf/seaweedfs/weed/storage/backend"
- "github.com/chrislusf/seaweedfs/weed/storage/types"
- "github.com/chrislusf/seaweedfs/weed/util"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/storage"
+ "github.com/seaweedfs/seaweedfs/weed/storage/backend"
+ "github.com/seaweedfs/seaweedfs/weed/storage/types"
+ "github.com/seaweedfs/seaweedfs/weed/util"
)
// This implements an on disk cache
diff --git a/weed/util/chunk_cache/chunk_cache_on_disk_test.go b/weed/util/chunk_cache/chunk_cache_on_disk_test.go
index 8c7880eee..14179beaa 100644
--- a/weed/util/chunk_cache/chunk_cache_on_disk_test.go
+++ b/weed/util/chunk_cache/chunk_cache_on_disk_test.go
@@ -3,7 +3,7 @@ package chunk_cache
import (
"bytes"
"fmt"
- "github.com/chrislusf/seaweedfs/weed/util/mem"
+ "github.com/seaweedfs/seaweedfs/weed/util/mem"
"math/rand"
"testing"
)
@@ -88,7 +88,7 @@ func TestOnDisk(t *testing.T) {
--- FAIL: TestOnDisk (0.19s)
chunk_cache_on_disk_test.go:73: failed to write to and read from cache: 4
FAIL
- FAIL github.com/chrislusf/seaweedfs/weed/util/chunk_cache 0.199s
+ FAIL github.com/seaweedfs/seaweedfs/weed/util/chunk_cache 0.199s
*/
continue
}
diff --git a/weed/util/chunk_cache/on_disk_cache_layer.go b/weed/util/chunk_cache/on_disk_cache_layer.go
index de32fb445..9f5d9ff9a 100644
--- a/weed/util/chunk_cache/on_disk_cache_layer.go
+++ b/weed/util/chunk_cache/on_disk_cache_layer.go
@@ -2,9 +2,9 @@ package chunk_cache
import (
"fmt"
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/storage"
- "github.com/chrislusf/seaweedfs/weed/storage/types"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/storage"
+ "github.com/seaweedfs/seaweedfs/weed/storage/types"
"golang.org/x/exp/slices"
"path"
)
diff --git a/weed/util/cipher.go b/weed/util/cipher.go
index f044c2ca3..f625f885e 100644
--- a/weed/util/cipher.go
+++ b/weed/util/cipher.go
@@ -7,7 +7,7 @@ import (
"errors"
"io"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
)
type CipherKey []byte
diff --git a/weed/util/compression.go b/weed/util/compression.go
index 8158b9ba5..d62ba9088 100644
--- a/weed/util/compression.go
+++ b/weed/util/compression.go
@@ -5,7 +5,7 @@ import (
"fmt"
"strings"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
// "github.com/klauspost/compress/zstd"
)
diff --git a/weed/util/config.go b/weed/util/config.go
index f09ac7e5e..a242742fc 100644
--- a/weed/util/config.go
+++ b/weed/util/config.go
@@ -6,7 +6,7 @@ import (
"github.com/spf13/viper"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
)
var (
diff --git a/weed/util/file_util.go b/weed/util/file_util.go
index 6155d18e1..3cd4b1b23 100644
--- a/weed/util/file_util.go
+++ b/weed/util/file_util.go
@@ -8,7 +8,7 @@ import (
"strings"
"time"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
)
func TestFolderWritable(folder string) (err error) {
diff --git a/weed/util/grace/pprof.go b/weed/util/grace/pprof.go
index 28bf6d553..620184c9b 100644
--- a/weed/util/grace/pprof.go
+++ b/weed/util/grace/pprof.go
@@ -5,7 +5,7 @@ import (
"runtime"
"runtime/pprof"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
)
func SetupProfiling(cpuProfile, memProfile string) {
diff --git a/weed/util/http_util.go b/weed/util/http_util.go
index 2f42d3768..67216bb14 100644
--- a/weed/util/http_util.go
+++ b/weed/util/http_util.go
@@ -5,13 +5,13 @@ import (
"encoding/json"
"errors"
"fmt"
- "github.com/chrislusf/seaweedfs/weed/util/mem"
+ "github.com/seaweedfs/seaweedfs/weed/util/mem"
"io"
"net/http"
"net/url"
"strings"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
)
var (
@@ -49,7 +49,7 @@ func Post(url string, values url.Values) ([]byte, error) {
return b, nil
}
-// github.com/chrislusf/seaweedfs/unmaintained/repeated_vacuum/repeated_vacuum.go
+// github.com/seaweedfs/seaweedfs/unmaintained/repeated_vacuum/repeated_vacuum.go
// may need increasing http.Client.Timeout
func Get(url string) ([]byte, bool, error) {
diff --git a/weed/util/log_buffer/log_buffer.go b/weed/util/log_buffer/log_buffer.go
index 422575193..5f145f48d 100644
--- a/weed/util/log_buffer/log_buffer.go
+++ b/weed/util/log_buffer/log_buffer.go
@@ -7,9 +7,9 @@ import (
"github.com/golang/protobuf/proto"
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
- "github.com/chrislusf/seaweedfs/weed/util"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
+ "github.com/seaweedfs/seaweedfs/weed/util"
)
const BufferSize = 4 * 1024 * 1024
diff --git a/weed/util/log_buffer/log_buffer_test.go b/weed/util/log_buffer/log_buffer_test.go
index 915b93bf4..2cc1c89b4 100644
--- a/weed/util/log_buffer/log_buffer_test.go
+++ b/weed/util/log_buffer/log_buffer_test.go
@@ -6,7 +6,7 @@ import (
"testing"
"time"
- "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
+ "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
)
func TestNewLogBufferFirstBuffer(t *testing.T) {
diff --git a/weed/util/log_buffer/log_read.go b/weed/util/log_buffer/log_read.go
index 35bc8ffd5..6464ade91 100644
--- a/weed/util/log_buffer/log_read.go
+++ b/weed/util/log_buffer/log_read.go
@@ -7,9 +7,9 @@ import (
"github.com/golang/protobuf/proto"
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
- "github.com/chrislusf/seaweedfs/weed/util"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
+ "github.com/seaweedfs/seaweedfs/weed/util"
)
var (
diff --git a/weed/util/mem/slot_pool.go b/weed/util/mem/slot_pool.go
index b3493febf..16b497af5 100644
--- a/weed/util/mem/slot_pool.go
+++ b/weed/util/mem/slot_pool.go
@@ -1,7 +1,7 @@
package mem
import (
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
"sync"
"sync/atomic"
)
diff --git a/weed/util/minfreespace.go b/weed/util/minfreespace.go
index c802bf6dd..0c4461ff1 100644
--- a/weed/util/minfreespace.go
+++ b/weed/util/minfreespace.go
@@ -3,7 +3,7 @@ package util
import (
"errors"
"fmt"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
"strconv"
"strings"
)
diff --git a/weed/util/net_timeout.go b/weed/util/net_timeout.go
index 536359eec..022c651d9 100644
--- a/weed/util/net_timeout.go
+++ b/weed/util/net_timeout.go
@@ -1,11 +1,11 @@
package util
import (
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
"net"
"time"
- "github.com/chrislusf/seaweedfs/weed/stats"
+ "github.com/seaweedfs/seaweedfs/weed/stats"
)
// Listener wraps a net.Listener, and gives a place to store the timeout
diff --git a/weed/util/network.go b/weed/util/network.go
index 687b6ec22..69559b5f0 100644
--- a/weed/util/network.go
+++ b/weed/util/network.go
@@ -5,7 +5,7 @@ import (
"strconv"
"strings"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
)
func DetectedHostAddress() string {
diff --git a/weed/util/retry.go b/weed/util/retry.go
index 892341dc1..dde4ded63 100644
--- a/weed/util/retry.go
+++ b/weed/util/retry.go
@@ -4,7 +4,7 @@ import (
"strings"
"time"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
)
var RetryWaitTime = 6 * time.Second
diff --git a/weed/util/skiplist/name_batch.go b/weed/util/skiplist/name_batch.go
index 53db5918f..d5d5de122 100644
--- a/weed/util/skiplist/name_batch.go
+++ b/weed/util/skiplist/name_batch.go
@@ -1,8 +1,8 @@
package skiplist
import (
- "github.com/chrislusf/seaweedfs/weed/glog"
"github.com/golang/protobuf/proto"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
"golang.org/x/exp/slices"
"strings"
)
diff --git a/weed/util/skiplist/name_list_serde.go b/weed/util/skiplist/name_list_serde.go
index 0a2052e7b..fee6815d3 100644
--- a/weed/util/skiplist/name_list_serde.go
+++ b/weed/util/skiplist/name_list_serde.go
@@ -1,8 +1,8 @@
package skiplist
import (
- "github.com/chrislusf/seaweedfs/weed/glog"
"github.com/golang/protobuf/proto"
+ "github.com/seaweedfs/seaweedfs/weed/glog"
)
func LoadNameList(data []byte, store ListStore, batchSize int) *NameList {
diff --git a/weed/util/skiplist/skiplist.proto b/weed/util/skiplist/skiplist.proto
index 2991ad830..4ea033c1b 100644
--- a/weed/util/skiplist/skiplist.proto
+++ b/weed/util/skiplist/skiplist.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
package skiplist;
-option go_package = "github.com/chrislusf/seaweedfs/weed/util/skiplist";
+option go_package = "github.com/seaweedfs/seaweedfs/weed/util/skiplist";
message SkipListProto {
repeated SkipListElementReference start_levels = 1;
@@ -27,4 +27,4 @@ message SkipListElement {
message NameBatchData {
repeated bytes names = 1;
-} \ No newline at end of file
+}