Use verify spawner in routes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
asonix 2023-07-27 13:39:31 -05:00
parent 5430da58aa
commit e63e1f975e

View file

@ -290,7 +290,9 @@ async fn do_server_main(
let app = App::new()
.app_data(web::Data::new(db.clone()))
.app_data(web::Data::new(state.clone()))
.app_data(web::Data::new(requests.clone()))
.app_data(web::Data::new(
requests.clone().spawner(verify_spawner.clone()),
))
.app_data(web::Data::new(actors.clone()))
.app_data(web::Data::new(config.clone()))
.app_data(web::Data::new(job_server))