Fix typo.
[arvados.git] / services / keepstore / handlers.go
index 258604ce59c50176a4d4473fd7dbf87c8d66de9c..fb327a386b0f33fdae30f1e0d3e4f880c8d0bfa1 100644 (file)
@@ -92,7 +92,7 @@ func MakeRESTRouter() http.Handler {
 
        mux := http.NewServeMux()
        mux.Handle("/", theConfig.metrics.Instrument(
-               httpserver.AddRequestIDs(httpserver.LogRequests(rtr.limiter))))
+               httpserver.AddRequestIDs(httpserver.LogRequests(nil, rtr.limiter))))
        mux.HandleFunc("/metrics.json", theConfig.metrics.exportJSON)
        mux.Handle("/metrics", theConfig.metrics.exportProm)
 
@@ -514,7 +514,7 @@ type PullRequest struct {
        Servers []string `json:"servers"`
 
        // Destination mount, or "" for "anywhere"
-       MountUUID string
+       MountUUID string `json:"mount_uuid"`
 }
 
 // PullHandler processes "PUT /pull" requests for the data manager.
@@ -547,13 +547,13 @@ func PullHandler(resp http.ResponseWriter, req *http.Request) {
        pullq.ReplaceQueue(plist)
 }
 
-// TrashRequest consists of a block locator and it's Mtime
+// TrashRequest consists of a block locator and its Mtime
 type TrashRequest struct {
        Locator    string `json:"locator"`
        BlockMtime int64  `json:"block_mtime"`
 
        // Target mount, or "" for "everywhere"
-       MountUUID string
+       MountUUID string `json:"mount_uuid"`
 }
 
 // TrashHandler processes /trash requests.