This commit is contained in:
Vikas 2022-05-09 12:56:59 -07:00 коммит произвёл GitHub
Родитель b101978346
Коммит f0ed3c48cc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -56,7 +56,8 @@ sleep 120
#az iot hub module-twin show --device-id ${edge_device_id} --module-id '$edgeAgent' --hub-name ${iothub_id}
out=$(az iot hub device-identity show -d ${edge_device_id} -n ${iothub_id})
status=$(jq -r '.connectionState' <<< "$out")
echo "out: $out"
echo "Status: $status"
test_result=1 # assume the worst
if [ "$status" == "Connected" ];
then