This commit is contained in:
dungu.zpf 2019-05-09 10:18:12 +08:00
parent 756862060f
commit 33de06a55e

View File

@ -469,6 +469,12 @@ public class InstanceController {
}
for (Instance instance : ips) {
// remove disabled instance:
if (!instance.isEnabled()) {
continue;
}
JSONObject ipObj = new JSONObject();
ipObj.put("ip", instance.getIp());