Expand error details for node errors

This commit is contained in:
Fred Park 2018-02-23 13:44:50 -08:00
Родитель 1b5367604a
Коммит e74ebcde90
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3C4D545F457737EB
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -2438,6 +2438,8 @@ def list_nodes(batch_client, config, pool_id=None, nodes=None):
if node.errors is not None:
for err in node.errors:
errors.append(' * {}: {}'.format(err.code, err.message))
for de in err.error_details:
errors.append(' * {}: {}'.format(de.name, de.value))
else:
errors = [' * no errors']
st = [' * start task:']