From 14fb0a7e40b0dcd4cb39ef4dbebd46a562ed96c3 Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Fri, 20 Oct 2023 09:23:40 -0700 Subject: [PATCH] remove quota warning --- skyplane/planner/planner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skyplane/planner/planner.py b/skyplane/planner/planner.py index d716a4f9..a541feae 100644 --- a/skyplane/planner/planner.py +++ b/skyplane/planner/planner.py @@ -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