Skip to content

Commit

Permalink
fix: correct path in info
Browse files Browse the repository at this point in the history
  • Loading branch information
danellecline committed Oct 25, 2023
1 parent 3f16d20 commit 63035cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepsea_ai/config/setup.py
Expand Up @@ -217,7 +217,7 @@ def store_role(config: cfg):
iam = session.client('iam')
results = iam.get_role(RoleName="DeepSeaAI")
role_arn = results['Role']['Arn']
info(f'Setting SageMaker Role ARN to {role_arn} in {config.path}')
info(f'Setting SageMaker Role ARN to {role_arn} in {config.config_ini}')
config.save('aws', 'sagemaker_arn', role_arn)
# Parse the ARN to get the account ID
account_id = role_arn.split(':')[4]
Expand Down

0 comments on commit 63035cd

Please sign in to comment.