Skip to content

Commit

Permalink
remove quota warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahwooders committed Oct 20, 2023
1 parent 9ac0764 commit 14fb0a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions skyplane/planner/planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ def _calculate_vm_types(self, region_tag: str) -> Optional[Tuple[str, int]]:

# No quota limits (quota limits weren't initialized properly during skyplane init)
if quota_limit is None:
logger.warning(
f"Quota limit file not found for {region_tag}. Try running `skyplane init --reinit-{cloud_provider}` to load the quota information"
)
#logger.warning(
# f"Quota limit file not found for {region_tag}. Try running `skyplane init --reinit-{cloud_provider}` to load the quota information"
#)
# return default instance type and number of instances
return config_vm_type, self.n_instances

Expand Down

0 comments on commit 14fb0a7

Please sign in to comment.