diff --git a/plume-models/src/search/actor.rs b/plume-models/src/search/actor.rs index 881d0284..99769f60 100644 --- a/plume-models/src/search/actor.rs +++ b/plume-models/src/search/actor.rs @@ -11,7 +11,9 @@ pub struct SearchActor { impl SearchActor { pub fn init(searcher: Arc, conn: DbPool) { - ACTOR_SYS.actor_of_args::("search", (searcher, conn)).expect("Failed to initialize searcher actor"); + ACTOR_SYS + .actor_of_args::("search", (searcher, conn)) + .expect("Failed to initialize searcher actor"); } }