File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
nexus/src/app/background/tasks Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ pub struct BlueprintPlanner {
5959 rx_config : Receiver < ReconfiguratorConfigLoaderState > ,
6060 rx_inventory : Receiver < Option < Arc < Collection > > > ,
6161 rx_blueprint : Receiver < Option < ( BlueprintTarget , Arc < Blueprint > ) > > ,
62- tx_blueprint : Sender < Option < Arc < ( BlueprintTarget , Blueprint ) > > > ,
62+ tx_blueprint : Sender < Option < ( BlueprintTarget , Arc < Blueprint > ) > > ,
6363 blueprint_limit : u64 ,
6464}
6565
@@ -99,7 +99,7 @@ impl BlueprintPlanner {
9999
100100 pub fn watcher (
101101 & self ,
102- ) -> watch:: Receiver < Option < Arc < ( BlueprintTarget , Blueprint ) > > > {
102+ ) -> watch:: Receiver < Option < ( BlueprintTarget , Arc < Blueprint > ) > > {
103103 self . tx_blueprint . subscribe ( )
104104 }
105105
@@ -313,7 +313,7 @@ impl BlueprintPlanner {
313313
314314 // We have a new target!
315315
316- self . tx_blueprint . send_replace ( Some ( Arc :: new ( ( target , blueprint) ) ) ) ;
316+ self . tx_blueprint . send_replace ( Some ( ( target , Arc :: new ( blueprint) ) ) ) ;
317317 Ok ( BlueprintPlannerStatus :: Targeted {
318318 parent_blueprint_id,
319319 blueprint_id,
You can’t perform that action at this time.
0 commit comments