Closed mkantor closed 2 years ago
Side note: it was surprising that app.default_service(web::get().to(handler)) means that handler will be called for non-GET requests. I filed https://github.com/actix/actix-web/issues/2598 about this.
app.default_service(web::get().to(handler))
handler
GET
Side note: it was surprising that
app.default_service(web::get().to(handler))
means thathandler
will be called for non-GET
requests. I filed https://github.com/actix/actix-web/issues/2598 about this.