mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 19:01:10 +08:00
[Tech Debt] Use f-string for python/ray/*.py (#10268)
* In progress. * Done with critical path. * Modified cluster_utils.py and log_monitor.py * Addressed code review.
This commit is contained in:
@@ -195,9 +195,10 @@ class FunctionActorManager:
|
||||
push_error_to_driver(
|
||||
self._worker,
|
||||
ray_constants.REGISTER_REMOTE_FUNCTION_PUSH_ERROR,
|
||||
"Failed to unpickle the remote function '{}' with "
|
||||
"function ID {}. Traceback:\n{}".format(
|
||||
function_name, function_id.hex(), traceback_str),
|
||||
"Failed to unpickle the remote function "
|
||||
f"'{function_name}' with "
|
||||
f"function ID {function_id.hex()}. "
|
||||
f"Traceback:\n{traceback_str}",
|
||||
job_id=job_id)
|
||||
else:
|
||||
# The below line is necessary. Because in the driver process,
|
||||
@@ -454,9 +455,9 @@ class FunctionActorManager:
|
||||
pass
|
||||
|
||||
def temporary_actor_method(*args, **kwargs):
|
||||
raise RuntimeError(
|
||||
"The actor with name {} failed to be imported, "
|
||||
"and so cannot execute this method.".format(actor_class_name))
|
||||
raise RuntimeError(f"The actor with name {actor_class_name} "
|
||||
"failed to be imported, "
|
||||
"and so cannot execute this method.")
|
||||
|
||||
for method in actor_method_names:
|
||||
setattr(TemporaryActor, method, temporary_actor_method)
|
||||
@@ -505,9 +506,9 @@ class FunctionActorManager:
|
||||
push_error_to_driver(
|
||||
self._worker,
|
||||
ray_constants.REGISTER_ACTOR_PUSH_ERROR,
|
||||
"Failed to unpickle actor class '{}' for actor ID {}. "
|
||||
"Traceback:\n{}".format(
|
||||
class_name, self._worker.actor_id.hex(), traceback_str),
|
||||
f"Failed to unpickle actor class '{class_name}' "
|
||||
f"for actor ID {self._worker.actor_id.hex()}. "
|
||||
f"Traceback:\n{traceback_str}",
|
||||
job_id=job_id)
|
||||
# TODO(rkn): In the future, it might make sense to have the worker
|
||||
# exit here. However, currently that would lead to hanging if
|
||||
|
||||
Reference in New Issue
Block a user