add subimit count parameter
related to https://github.com/chrislusf/seaweedfs/issues/631
This commit is contained in:
@@ -99,8 +99,16 @@ func submitForClientHandler(w http.ResponseWriter, r *http.Request, masterUrl st
|
|||||||
|
|
||||||
debug("assigning file id for", fname)
|
debug("assigning file id for", fname)
|
||||||
r.ParseForm()
|
r.ParseForm()
|
||||||
|
count := uint64(1)
|
||||||
|
if r.FormValue("count") != "" {
|
||||||
|
count, pe = strconv.ParseUint(r.FormValue("count"), 10, 32)
|
||||||
|
if pe != nil {
|
||||||
|
writeJsonError(w, r, http.StatusBadRequest, pe)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
ar := &operation.VolumeAssignRequest{
|
ar := &operation.VolumeAssignRequest{
|
||||||
Count: 1,
|
Count: count,
|
||||||
Replication: r.FormValue("replication"),
|
Replication: r.FormValue("replication"),
|
||||||
Collection: r.FormValue("collection"),
|
Collection: r.FormValue("collection"),
|
||||||
Ttl: r.FormValue("ttl"),
|
Ttl: r.FormValue("ttl"),
|
||||||
|
|||||||
Reference in New Issue
Block a user