Merge branch '15305-keep-balance-bytes'
[arvados.git] / lib / controller / router / request.go
index c219b1e1de98d85b0b0f473180a808a61358edc2..377f7243c009bef591fffb4b3b53acaf39c0d359 100644 (file)
@@ -115,13 +115,6 @@ func (rtr *router) loadRequestParams(req *http.Request, attrsKey string) (map[st
        }
 
        if v, ok := params[attrsKey]; ok && attrsKey != "" {
-               if v, ok := v.(map[string]interface{}); ok {
-                       // Delete field(s) that appear in responses
-                       // but not in update attrs, so clients can
-                       // fetch-modify-update.
-                       delete(v, "etag")
-                       delete(v, "unsigned_manifest_text")
-               }
                params["attrs"] = v
                delete(params, attrsKey)
        }