Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
pcmoritz committed Feb 8, 2025
1 parent 2312601 commit 27b4a33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/ray/dag/tests/experimental/test_torch_tensor_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ def test_torch_tensor_explicit_communicator(ray_start_regular):
ValueError,
match=(
"Please specify a custom communicator for the DAGNode using "
"`with_tensor_transport\(\)`, or specify a communicator or 'create' for "
r"`with_tensor_transport\(\)`, or specify a communicator or 'create' for "
"_default_communicator when calling experimental_compile()."
),
):
Expand Down
4 changes: 2 additions & 2 deletions python/ray/serve/tests/test_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def check_log():
f'"deployment": "{resp["app_name"]}_fn", '
f'"replica": "{method_replica_id}", '
f'"component_name": "replica", '
f'"timestamp_ns": \d+}}.*'
rf'"timestamp_ns": \d+}}.*'
)
user_class_method_log_regex = (
'.*"message": "user log message from class method".*'
Expand All @@ -446,7 +446,7 @@ def check_log():
f'"deployment": "{resp2["app_name"]}_Model", '
f'"replica": "{class_method_replica_id}", '
f'"component_name": "replica", '
f'"timestamp_ns": \d+}}.*'
rf'"timestamp_ns": \d+}}.*'
)
else:
user_method_log_regex = f".*{resp['request_id']} -- user func.*"
Expand Down

0 comments on commit 27b4a33

Please sign in to comment.