(w http.ResponseWriter, r *http.Request)
| 141 | } |
| 142 | |
| 143 | func (o *ObjectNode) unsupportedOperationHandler(w http.ResponseWriter, r *http.Request) { |
| 144 | log.LogInfof("Audit: unsupported operation: requestID(%v) remote(%v) action(%v) userAgent(%v)", |
| 145 | GetRequestID(r), |
| 146 | getRequestIP(r), |
| 147 | ActionFromRouteName(mux.CurrentRoute(r).GetName()), |
| 148 | r.UserAgent()) |
| 149 | UnsupportedOperation.ServeResponse(w, r) |
| 150 | } |
nothing calls this directly
no test coverage detected