Skip to content

Commit

Permalink
Update doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
Ultramann committed Aug 7, 2024
1 parent fa263df commit 669d432
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sky/provision/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ def _get_ips(self, use_internal_ips: bool) -> List[str]:
return ip_list

def get_feasible_ips(self, force_internal_ips: bool = False) -> List[str]:
"""Get external IPs if they exist, otherwise get internal ones."""
"""Get internal IPs if provider config specifies to, external IPs if
they exist, otherwise get internal ones."""
if self.provider_config is not None:
use_internal_ips = self.provider_config.get('use_internal_ips',
False)
Expand Down

0 comments on commit 669d432

Please sign in to comment.