src/health_runner/nccl_runner.py [279:302]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  for node in passed_nodes:
    checker_common.label_node(
        node, label_key=NCCL_RESULT_KEY, label_value="pass"
    )
    logging.info("Node %s passed nccl test", node)

  # If no second pass, no failed nodes, or no passed nodes for second pass,
  # then return results.
  if (not second_pass_enabled) or (not suspect_nodes) or (not passed_nodes):
    logging.info("Second pass will not run")
    # Label suspect nodes based on their given result type
    for node, result_type in suspect_nodes:
      checker_common.label_node(
          node, label_key=NCCL_RESULT_KEY, label_value=result_type
      )
      logging.info("Node %s failed nccl test, result %s", node, result_type)
    failed_nodes = node_results.get("fail", list())
    suspect_nodes_no_fails: list[str] = [
        node for node, result_type in suspect_nodes if result_type != "fail"
    ]
    print(f"Found suspect nodes: {suspect_nodes_no_fails}")
    print(f"Found failed nodes: {failed_nodes}")
    print(f"Found passed nodes: {passed_nodes}")
    health_result.health_results.extend(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/health_runner/nccl_runner.py [445:468]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  for node in passed_nodes:
    checker_common.label_node(
        node, label_key=NCCL_RESULT_KEY, label_value="pass"
    )
    logging.info("Node %s passed nccl test", node)

  # If no second pass, no failed nodes, or no passed nodes for second pass,
  # then return results.
  if (not second_pass_enabled) or (not suspect_nodes) or (not passed_nodes):
    logging.info("Second pass will not run")
    # Label suspect nodes based on their given result type
    for node, result_type in suspect_nodes:
      checker_common.label_node(
          node, label_key=NCCL_RESULT_KEY, label_value=result_type
      )
      logging.info("Node %s failed nccl test, result %s", node, result_type)
    failed_nodes = node_results.get("fail", list())
    suspect_nodes_no_fails: list[str] = [
        node for node, result_type in suspect_nodes if result_type != "fail"
    ]
    print(f"Found suspect nodes: {suspect_nodes_no_fails}")
    print(f"Found failed nodes: {failed_nodes}")
    print(f"Found passed nodes: {passed_nodes}")
    health_result.health_results.extend(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



