aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2025-09-08 21:40:40 +0500
committerGitHub <noreply@github.com>2025-09-08 09:40:40 -0700
commitd0198480183365ba38238552ee921a529a0eaa6a (patch)
tree4fb10c88139ee1bbaf331aa3d261888ed9def5dc
parent63f4bc64a3f032a436ff54c0f688ce99bb147c63 (diff)
downloadseaweedfs-d0198480183365ba38238552ee921a529a0eaa6a.tar.xz
seaweedfs-d0198480183365ba38238552ee921a529a0eaa6a.zip
fix: pass inflightDownloadDataTimeout to volumeServer (#7206)
-rw-r--r--weed/server/volume_server.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/server/volume_server.go b/weed/server/volume_server.go
index 89414afc9..66c62b98c 100644
--- a/weed/server/volume_server.go
+++ b/weed/server/volume_server.go
@@ -102,6 +102,7 @@ func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
concurrentUploadLimit: concurrentUploadLimit,
concurrentDownloadLimit: concurrentDownloadLimit,
inflightUploadDataTimeout: inflightUploadDataTimeout,
+ inflightDownloadDataTimeout: inflightDownloadDataTimeout,
hasSlowRead: hasSlowRead,
readBufferSizeMB: readBufferSizeMB,
ldbTimout: ldbTimeout,