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

Function sn_damage

starrynet/sn_orchestrater.py:433–443  ·  view source on GitHub ↗
(random_list, container_id_list)

Source from the content-addressed store, hash-verified

431
432
433def sn_damage(random_list, container_id_list):
434 damage_threads = []
435 for random_satellite in random_list:
436 damage_thread = threading.Thread(target=sn_damage_link,
437 args=(int(random_satellite),
438 container_id_list))
439 damage_threads.append(damage_thread)
440 for damage_thread in damage_threads:
441 damage_thread.start()
442 for damage_thread in damage_threads:
443 damage_thread.join()
444
445
446def sn_recover_link(

Callers 1

sn_orchestrater.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected