diff --git a/sky/provision/cudo/cudo_wrapper.py b/sky/provision/cudo/cudo_wrapper.py index f5bb96b8e89..b92a4b29822 100644 --- a/sky/provision/cudo/cudo_wrapper.py +++ b/sky/provision/cudo/cudo_wrapper.py @@ -11,7 +11,7 @@ def launch(name: str, data_center_id: str, ssh_key: str, machine_type: str, memory_gib: int, vcpu_count: int, gpu_count: int, - tags: Dict[str, str], disk_size: int, node_type, net_name): + tags: Dict[str, str], disk_size: int, net_name): """Launches an instance with the given parameters.""" request = cudo.cudo.CreateVMBody( diff --git a/sky/provision/cudo/instance.py b/sky/provision/cudo/instance.py index a399146ab65..04138684d9b 100644 --- a/sky/provision/cudo/instance.py +++ b/sky/provision/cudo/instance.py @@ -104,7 +104,6 @@ def run_instances(region: str, cluster_name_on_cloud: str, gpu_count=gpu_count, tags={}, disk_size=config.node_config['DiskSize'], - node_type=node_type, net_name=cluster_name_on_cloud) except Exception as e: # pylint: disable=broad-except logger.warning(f'run_instances error: {e}')