Skip to content

Commit

Permalink
Remove A10 warning when re-launching on existing cluster (#3886)
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
cblmemo authored Aug 29, 2024
1 parent 9323dc8 commit 3582637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/backends/cloud_vm_ray_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1933,7 +1933,7 @@ def provision_with_retries(
while True:
if (isinstance(to_provision.cloud, clouds.Azure) and
to_provision.accelerators is not None and
'A10' in to_provision.accelerators):
'A10' in to_provision.accelerators and prev_handle is None):
logger.warning(f'{style.BRIGHT}{fore.YELLOW}Trying to launch '
'an A10 cluster on Azure. This may take ~20 '
'minutes due to driver installation.'
Expand Down

0 comments on commit 3582637

Please sign in to comment.