refactoring
This commit is contained in:
@@ -141,9 +141,7 @@ func PostHandler(w http.ResponseWriter, r *http.Request) {
|
||||
ret := store.Write(volumeId, needle)
|
||||
if ret > 0 || !store.HasVolume(volumeId) { //send to other replica locations
|
||||
if r.FormValue("type") != "standard" {
|
||||
waitTime, err := strconv.Atoi(r.FormValue("wait"))
|
||||
lookupResult, lookupErr := operation.Lookup(*server, volumeId)
|
||||
if lookupErr == nil {
|
||||
if lookupResult, lookupErr := operation.Lookup(*server, volumeId); lookupErr == nil {
|
||||
sendFunc := func(background bool) {
|
||||
postContentFunc := func(location operation.Location) bool {
|
||||
operation.Upload("http://"+location.PublicUrl+r.URL.Path+"?type=standard", filename, bytes.NewReader(needle.Data))
|
||||
@@ -159,6 +157,7 @@ func PostHandler(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
}
|
||||
}
|
||||
waitTime, err := strconv.Atoi(r.FormValue("wait"))
|
||||
sendFunc(err == nil && waitTime > 0)
|
||||
} else {
|
||||
log.Println("Failed to lookup for", volumeId, lookupErr.Error())
|
||||
|
||||
Reference in New Issue
Block a user