diff --git a/neode-ui/src/views/appSession/AppSessionFrame.vue b/neode-ui/src/views/appSession/AppSessionFrame.vue index 39a577af..d3a3f49f 100644 --- a/neode-ui/src/views/appSession/AppSessionFrame.vue +++ b/neode-ui/src/views/appSession/AppSessionFrame.vue @@ -60,9 +60,12 @@ /> - + -
+
diff --git a/tests/lifecycle/remote-lifecycle.sh b/tests/lifecycle/remote-lifecycle.sh index ffabf2f0..1eb9fa0b 100755 --- a/tests/lifecycle/remote-lifecycle.sh +++ b/tests/lifecycle/remote-lifecycle.sh @@ -250,7 +250,7 @@ container_health() { health=$( ARCHY_RPC_TIMEOUT="${ARCHY_HEALTH_RPC_TIMEOUT:-20}" \ rpc_result container-health "$(jq -nc --arg app "$app" '{app_id:$app}')" \ - | jq -r --arg app "$app" '.[$app] // "unknown" | ascii_downcase' + | jq -r --arg app "$app" '(.[$app] // "") | if . == "" then "unknown" else ascii_downcase end' ) || health=unknown if [[ "$app" == "indeedhub" && "$health" != "healthy" ]] && probe_launch "$app" >/dev/null 2>&1; then health=healthy