Skip to content

Commit

Permalink
Update operator config filenoutfound error message
Browse files Browse the repository at this point in the history
  • Loading branch information
RobGeada committed Jan 31, 2025
1 parent 99873b6 commit 9a4cc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trustyai_tests/setup/setup_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ def setup_cluster(operator_config_yaml, trustyai_manifests_url):
with (open(operator_config_yaml, 'r') as f):
operator_data = yaml.load(f, yaml.Loader)
except FileNotFoundError as e:
logger.error("Operator config yaml {} not found:".format(operator_config_yaml))
logger.error(e)
logger.error("Operator config yaml not found, make sure your working directory is trustyai-tests/")
raise e

# make sure cluster is ready for operator installation
Expand Down

0 comments on commit 9a4cc16

Please sign in to comment.