Skip to content

Commit

Permalink
[minor] Use lower case for sky check hint in optimizer (#3571)
Browse files Browse the repository at this point in the history
use lower case for sky check hint
  • Loading branch information
Michaelvll authored May 20, 2024
1 parent d259ddc commit 7be7f6a
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 @@ -1190,7 +1190,7 @@ def _check_specified_clouds(dag: 'dag_lib.Dag') -> None:
msg = (f'Task{task_name} requires {", ".join(disabled_clouds)} '
f'which {is_or_are} not enabled. To enable access, change '
f'the task cloud requirement or run: {colorama.Style.BRIGHT}'
f'sky check {" ".join(disabled_clouds)}'
f'sky check {" ".join(c.lower() for c in disabled_clouds)}'
f'{colorama.Style.RESET_ALL}')
if all_clouds_specified == disabled_clouds:
# If all resources are specified with a disabled cloud, we
Expand Down

0 comments on commit 7be7f6a

Please sign in to comment.