@@ -458,7 +458,7 @@ async fn reload_sites(
458458 . join( "\n " )
459459 ) ;
460460
461- let sub_hps_without_pushlog = sites_info
461+ let sites_without_pushlog = sites_info
462462 . iter ( )
463463 . filter ( |( _, site) | sub_hps
464464 . get ( & site. sub_hp )
@@ -470,14 +470,14 @@ async fn reload_sites(
470470 let mntchng_subscribers = init_subscribers (
471471 & mut old_state. mntchng_subscribers ,
472472 client_cmd_tx,
473- sub_hps_without_pushlog . clone ( ) . map ( |( path, _) | ( subscription_prefix_path ( join_path ! ( "shv" , path) , & shv_api_version) , "mntchng" . to_string ( ) ) )
473+ sites_without_pushlog . clone ( ) . map ( |( path, _) | ( subscription_prefix_path ( join_path ! ( "shv" , path) , & shv_api_version) , "mntchng" . to_string ( ) ) )
474474 ) . await ;
475475
476476 log:: info!( "Loading typeinfo" ) ;
477477 let subscribers = init_subscribers (
478478 & mut old_state. subscribers ,
479479 client_cmd_tx,
480- sub_hps_without_pushlog . clone ( ) . flat_map ( |( path, _) | {
480+ sites_without_pushlog . clone ( ) . flat_map ( |( path, _) | {
481481 let shv_path = join_path ! ( "shv" , path) ;
482482 const SIG_CMDLOG : & str = "cmdlog" ;
483483 [
@@ -487,7 +487,7 @@ async fn reload_sites(
487487 } )
488488 ) . await ;
489489
490- let typeinfos = sub_hps_without_pushlog
490+ let typeinfos = sites_without_pushlog
491491 . map ( |( path, _) | {
492492 let client_cmd_tx = ClientCommandSender :: clone ( client_cmd_tx) ;
493493 async move {
0 commit comments