diff options
| author | Chris Lu <chris.lu@gmail.com> | 2025-12-01 10:34:10 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2025-12-01 10:34:10 -0800 |
| commit | aff9aa7fa5ed3c7aa82cf5377c4a82b20e403f75 (patch) | |
| tree | 441c78448844a5d3418d35db7e9659e7c2cabd31 | |
| parent | 2f007425c0e27c4778cbebeeeee933961985ae3b (diff) | |
| download | seaweedfs-origin/fix-mount-http-parallelism.tar.xz seaweedfs-origin/fix-mount-http-parallelism.zip | |
| -rw-r--r-- | weed/util/http/client/http_client.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/weed/util/http/client/http_client.go b/weed/util/http/client/http_client.go index 3e015ca2d..660c12318 100644 --- a/weed/util/http/client/http_client.go +++ b/weed/util/http/client/http_client.go @@ -4,14 +4,15 @@ import ( "crypto/tls" "crypto/x509" "fmt" - util "github.com/seaweedfs/seaweedfs/weed/util" - "github.com/spf13/viper" "io" "net/http" "net/url" "os" "strings" "sync" + + util "github.com/seaweedfs/seaweedfs/weed/util" + "github.com/spf13/viper" ) var ( |
