Skip to content

Commit 14b4b6c

Browse files
[Bugfix][Urgent] AQUA get configuration bugfix (#1063)
2 parents 0db36f2 + 9373281 commit 14b4b6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ads/aqua/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def get_config(
333333
config_path = os.path.join(artifact_path.rstrip("/"), config_folder)
334334
if not is_path_exists(config_path):
335335
config_path = f"{artifact_path.rstrip('/')}/"
336-
config_file_path = f"{config_path}{config_file_name}"
336+
config_file_path = os.path.join(config_path, config_file_name)
337337
if is_path_exists(config_file_path):
338338
try:
339339
config = load_config(

0 commit comments

Comments
 (0)