Browse Source

also return publicUrl when assigning the fid

git-svn-id: https://weed-fs.googlecode.com/svn/trunk@48 282b0af5-e82d-9cf1-ede4-77906d7719d0
pull/2/head
chris.lu@gmail.com 13 years ago
parent
commit
de6e1442d7
  1. 2
      weed-fs/src/cmd/weedmaster/weedmaster.go

2
weed-fs/src/cmd/weedmaster/weedmaster.go

@ -39,7 +39,7 @@ func dirLookupHandler(w http.ResponseWriter, r *http.Request) {
func dirAssignHandler(w http.ResponseWriter, r *http.Request) {
fid, machine, err := mapper.PickForWrite()
if err == nil {
writeJson(w, r, map[string]string{"fid": fid, "url": machine.Url})
writeJson(w, r, map[string]string{"fid": fid, "url": machine.Url, "publicUrl":machine.PublicUrl})
} else {
log.Println(err)
writeJson(w, r, map[string]string{"error": err.Error()})

Loading…
Cancel
Save