mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #756 from zzoe/patch-1
Update volume_server_handlers_write.go
This commit is contained in:
commit
200cbcde62
|
@ -34,7 +34,7 @@ func (vs *VolumeServer) PostHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ret := operation.UploadResult{}
|
ret := operation.UploadResult{}
|
||||||
size, errorStatus := topology.ReplicatedWrite(vs.GetMaster(),
|
_, errorStatus := topology.ReplicatedWrite(vs.GetMaster(),
|
||||||
vs.store, volumeId, needle, r)
|
vs.store, volumeId, needle, r)
|
||||||
httpStatus := http.StatusCreated
|
httpStatus := http.StatusCreated
|
||||||
if errorStatus != "" {
|
if errorStatus != "" {
|
||||||
|
@ -44,7 +44,7 @@ func (vs *VolumeServer) PostHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
if needle.HasName() {
|
if needle.HasName() {
|
||||||
ret.Name = string(needle.Name)
|
ret.Name = string(needle.Name)
|
||||||
}
|
}
|
||||||
ret.Size = size
|
ret.Size = needle.DataSize
|
||||||
setEtag(w, needle.Etag())
|
setEtag(w, needle.Etag())
|
||||||
writeJsonQuiet(w, r, httpStatus, ret)
|
writeJsonQuiet(w, r, httpStatus, ret)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue