Skip to content

Commit

Permalink
Admin console: ignore standalone instance status for app details
Browse files Browse the repository at this point in the history
The status is never displayed. If we want to display it in app details, 
we should do it asynchronously
Signed-off-by:Ondro Mihalyi <mihalyi@omnifish.ee>
  • Loading branch information
OndroMih committed May 29, 2023
1 parent b68c29e commit 614bdcc
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -52,6 +52,7 @@ public static List getStandaloneInstances(){
String endpoint = GuiUtil.getSessionValue("REST_URL") + "/list-instances" ;
Map attrsMap = new HashMap();
attrsMap.put("standaloneonly", "true");
attrsMap.put("nostatus", "true");
try{
Map responseMap = RestUtil.restRequest( endpoint , attrsMap, "get" , null, false);
Map dataMap = (Map) responseMap.get("data");
Expand Down

0 comments on commit 614bdcc

Please sign in to comment.