Explorar el Código

Update flex domains with empty set if needed

pull/58/head
Kristijan Mitrovic hace 4 años
padre
commit
eb5b3137c6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      bubble-server/src/main/java/bubble/service/stream/StandardAppPrimerService.java

+ 1
- 1
bubble-server/src/main/java/bubble/service/stream/StandardAppPrimerService.java Ver fichero

@@ -282,7 +282,7 @@ public class StandardAppPrimerService implements AppPrimerService {
if (!empty(flexExcludeDomains)) flexDomains.removeAll(flexExcludeDomains);
AppRuleDriver.defineRedisFlexSet(redis, ip, app.getName() + ":" + app.getUuid(),
flexDomains.toArray(String[]::new));
updateFlexRouters = !empty(flexDomains);
updateFlexRouters = true;
}
if (!empty(flexExcludeDomains)) {
AppRuleDriver.defineRedisFlexExcludeSet(redis, ip, app.getName() + ":" + app.getUuid(),


Cargando…
Cancelar
Guardar