change volume id type to topology.VolumeId

This commit is contained in:
Chris Lu
2012-08-23 22:20:37 -07:00
parent 0121f35c12
commit 31e4dbfe38
6 changed files with 17 additions and 15 deletions

View File

@@ -39,7 +39,7 @@ func dirLookupHandler(w http.ResponseWriter, r *http.Request) {
vid = vid[0:commaSep]
}
volumeId, _ := strconv.ParseUint(vid, 10, 64)
machine, e := mapper.Get(uint32(volumeId))
machine, e := mapper.Get(topology.VolumeId(volumeId))
if e == nil {
writeJson(w, r, machine.Server)
} else {