mirror of
https://github.com/clearml/clearml
synced 2025-02-07 13:23:40 +00:00
Fix AWS autoscaler typos
This commit is contained in:
parent
79df2be26c
commit
89034233ed
@ -99,8 +99,8 @@ def run_wizard():
|
||||
)
|
||||
hyper_params.cloud_credentials_region = get_input(
|
||||
"AWS region name",
|
||||
"[us-east-1b]",
|
||||
default='us-east-1b')
|
||||
"[us-east-1]",
|
||||
default='us-east-1')
|
||||
# get GIT User/Pass for cloning
|
||||
print(
|
||||
"\nGIT credentials:"
|
||||
@ -211,7 +211,7 @@ def run_wizard():
|
||||
if k not in (q[0] for q in queues[queue_name])]
|
||||
while True:
|
||||
queue_type = get_input(
|
||||
"a instance type to attach to the queue",
|
||||
"an instance type to attach to the queue",
|
||||
"{}".format(valid_instances),
|
||||
question="Select",
|
||||
required=True,
|
||||
|
@ -82,8 +82,8 @@ class AwsAutoScaler(AutoScaler):
|
||||
access_key=self.access_key,
|
||||
secret_key=self.secret_key,
|
||||
queue=queue_name,
|
||||
git_user=self.git_user,
|
||||
git_pass=self.git_pass,
|
||||
git_user=self.git_user or "",
|
||||
git_pass=self.git_pass or "",
|
||||
trains_conf=self.extra_trains_conf,
|
||||
bash_script=self.extra_vm_bash_script,
|
||||
docker="--docker '{}'".format(self.default_docker_image)
|
||||
|
Loading…
Reference in New Issue
Block a user