aboutsummaryrefslogtreecommitdiff
path: root/weed/server/volume_server_handlers.go
diff options
context:
space:
mode:
authorKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2024-02-15 03:18:56 +0500
committerGitHub <noreply@github.com>2024-02-14 14:18:56 -0800
commit8fb978d6f69d411b2502f02b3c50b19332746a19 (patch)
tree4c25f36aeb1a5303a21498036868dfac1b4e3836 /weed/server/volume_server_handlers.go
parent3d463ef471f4d7b0412c34b18caa658221ffd35c (diff)
downloadseaweedfs-8fb978d6f69d411b2502f02b3c50b19332746a19.tar.xz
seaweedfs-8fb978d6f69d411b2502f02b3c50b19332746a19.zip
[volume] requests that were canceled by the client are not an internal server problem(500 => 499) (#5304)
Diffstat (limited to 'weed/server/volume_server_handlers.go')
-rw-r--r--weed/server/volume_server_handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/server/volume_server_handlers.go b/weed/server/volume_server_handlers.go
index 06134e648..4325b0074 100644
--- a/weed/server/volume_server_handlers.go
+++ b/weed/server/volume_server_handlers.go
@@ -53,7 +53,7 @@ func (vs *VolumeServer) privateStoreHandler(w http.ResponseWriter, r *http.Reque
select {
case <-r.Context().Done():
glog.V(4).Infof("request cancelled from %s: %v", r.RemoteAddr, r.Context().Err())
- w.WriteHeader(http.StatusInternalServerError)
+ w.WriteHeader(util.HttpStatusCancelled)
vs.inFlightDownloadDataLimitCond.L.Unlock()
return
default: