Merge pull request #51 from Azure/catch_new_exception

Catch new azureml exception
This commit is contained in:
Marvin Buss 2020-10-15 22:41:43 +02:00 коммит произвёл GitHub
Родитель 0918c3e9c3 41d214555e
Коммит 38994ff055
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -5,6 +5,7 @@ import jsonschema
from azureml.core import RunConfiguration, ScriptRunConfig
from azureml.pipeline.core import Pipeline
from azureml.exceptions import UserErrorException
class AMLConfigurationException(Exception):
@ -99,6 +100,9 @@ def load_runconfig_yaml(runconfig_yaml_file):
except FileNotFoundError as exception:
print(f"::debug::Error when loading runconfig yaml definition your repository (Path: /{runconfig_yaml_file}): {exception}")
run_config = None
except UserErrorException as exception:
print(f"::debug::Error when loading runconfig yaml definition your repository (Path: /{runconfig_yaml_file}): {exception}")
run_config = None
return run_config