Skip to content

Commit

Permalink
fix job name in optimizer table
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelvll committed May 1, 2024
1 parent dbd7779 commit 65fce74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ def _get_resource_group_hash(resources: 'resources_lib.Resources'):
json.dumps(resource.to_yaml_config()): cost
for resource, cost in v.items()
}
task_str = (f'for task {repr(task)!r} ' if num_tasks > 1 else '')
task_str = (f'for task {task.name!r} ' if num_tasks > 1 else '')
plural = 's' if task.num_nodes > 1 else ''
logger.info(
f'{colorama.Style.BRIGHT}Considered resources {task_str}'
Expand Down

0 comments on commit 65fce74

Please sign in to comment.