diff --git a/mp1/node.py b/mp1/node.py index e600b14f0f868d01a846587835794c9430d83d62..a727d14a364ab011271c7293f09859cbfae0b190 100644 --- a/mp1/node.py +++ b/mp1/node.py @@ -59,14 +59,14 @@ def handle_failure(node_name): with mutex_lock: if node_name in connections: del connections[node_name] - print(connections) + # print(connections) while not pq.empty(): print(pq.get()) NUM_RELATIONS -= 1 - print(f"Handling failure of {node_name}. System should continue operating.") + # print(f"Handling failure of {node_name}. System should continue operating.") def create_node(node: Tuple[str, str, int], nodes: List[Tuple[str, str, int]]):