aboutsummaryrefslogtreecommitdiff
path: root/weed/util/http_util.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/util/http_util.go')
-rw-r--r--weed/util/http_util.go6
1 files changed, 3 insertions, 3 deletions
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) {