MCPcopy Create free account
hub / github.com/SpaceNetLab/StarryNet / sn_recover

Function sn_recover

starrynet/sn_orchestrater.py:489–499  ·  view source on GitHub ↗
(damage_list, container_id_list, sat_loss)

Source from the content-addressed store, hash-verified

487
488
489def sn_recover(damage_list, container_id_list, sat_loss):
490 recover_threads = []
491 for damaged_satellite in damage_list:
492 recover_thread = threading.Thread(target=sn_recover_link,
493 args=(int(damaged_satellite),
494 container_id_list, sat_loss))
495 recover_threads.append(recover_thread)
496 for recover_thread in recover_threads:
497 recover_thread.start()
498 for recover_thread in recover_threads:
499 recover_thread.join()
500
501
502def sn_update_delay(matrix, container_id_list,

Callers 1

sn_orchestrater.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected