diff options
| author | Konstantin Lebedev <9497591+kmlebedev@users.noreply.github.com> | 2025-09-08 21:40:40 +0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-08 09:40:40 -0700 |
| commit | d0198480183365ba38238552ee921a529a0eaa6a (patch) | |
| tree | 4fb10c88139ee1bbaf331aa3d261888ed9def5dc | |
| parent | 63f4bc64a3f032a436ff54c0f688ce99bb147c63 (diff) | |
| download | seaweedfs-d0198480183365ba38238552ee921a529a0eaa6a.tar.xz seaweedfs-d0198480183365ba38238552ee921a529a0eaa6a.zip | |
fix: pass inflightDownloadDataTimeout to volumeServer (#7206)
| -rw-r--r-- | weed/server/volume_server.go | 1 |
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, |
