Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Bug: service url error message (#155)
Browse files Browse the repository at this point in the history
* fixed error message

* fix typo
  • Loading branch information
jafreck authored Oct 6, 2017
1 parent 1f73125 commit a2755e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aztk/clusterlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def create_cluster(
])

# Check for ssh key, if None, prompt for password
ssh_key, passowrd = self._get_ssh_key_or_prompt(username=username, ssh_key=ssh_key, password=password)
ssh_key, password = self._get_ssh_key_or_prompt(username=username, ssh_key=ssh_key, password=password)

# Create the pool + create user for the pool
util.create_pool_if_not_exist(pool, self.batch_client)
Expand Down
2 changes: 1 addition & 1 deletion aztk/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def _merge_dict(self, secrets_config):
self.batch_service_url = secrets_config['batch']['batchserviceurl']
except KeyError:
raise error.AztkError(
"Please specify a batch service in your .aztk/secrets.yaml file")
"Please specify a batch service url in your .aztk/secrets.yaml file")

try:
self.storage_account_name = secrets_config['storage']['storageaccountname']
Expand Down

0 comments on commit a2755e3

Please sign in to comment.