Return helpful text about sc id not found

This commit is contained in:
Fred Park 2017-03-16 19:20:35 -07:00
Родитель 791c5726e0
Коммит c15ea84840
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -2490,7 +2490,12 @@ def remotefs_settings(config, sc_id=None):
storage_cluster=None,
)
# storage cluster settings
sc_conf = conf['storage_clusters'][sc_id]
try:
sc_conf = conf['storage_clusters'][sc_id]
except KeyError:
raise ValueError(
('Storage cluster {} is not defined in the given fs '
'configuration file').format(sc_id))
sc_rg = _kv_read_checked(sc_conf, 'resource_group', resource_group)
if util.is_none_or_empty(md_rg):
raise ValueError('invalid resource_group in remote_fs')