Skip to content

Commit

Permalink
[Test] Fix test event test timeout (ray-project#33704)
Browse files Browse the repository at this point in the history
Signed-off-by: elliottower <[email protected]>
  • Loading branch information
rkooo567 authored and elliottower committed Apr 22, 2023
1 parent b21ab87 commit b39dc58
Show file tree
Hide file tree
Showing 4 changed files with 658 additions and 623 deletions.
11 changes: 6 additions & 5 deletions dashboard/modules/actor/actor_head.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,12 @@ def process_actor_data_from_pubsub(actor_id, actor_table_data):
logger.debug(
f"Processing takes {elapsed}. Total process: " f"{len(published)}"
)
logger.debug(
"Processing throughput: "
f"{self.total_published_events / self.accumulative_event_processing_s}" # noqa
" / s"
)
if self.accumulative_event_processing_s > 0:
logger.debug(
"Processing throughput: "
f"{self.total_published_events / self.accumulative_event_processing_s}" # noqa
" / s"
)
logger.debug(f"queue size: {self.subscriber_queue_size}")
except Exception:
logger.exception("Error processing actor info from GCS.")
Expand Down
1 change: 1 addition & 0 deletions python/ray/tests/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ py_test_module_list(
"test_nested_task.py",
"test_metrics.py",
"test_task_events.py",
"test_task_events_2.py",
"test_task_metrics.py",
"test_task_metrics_reconstruction.py",
"test_actor_state_metrics.py",
Expand Down
Loading

0 comments on commit b39dc58

Please sign in to comment.