Procházet zdrojové kódy

Run first time listener for restoring instances also

pull/20/head
Kristijan Mitrovic před 4 roky
rodič
revize
29e4fad0fb
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      bubble-server/src/main/java/bubble/server/BubbleServer.java

+ 2
- 1
bubble-server/src/main/java/bubble/server/BubbleServer.java Zobrazit soubor

@@ -56,7 +56,8 @@ public class BubbleServer extends RestServerBase<BubbleConfiguration> {
});

public static final List<RestServerLifecycleListener> RESTORE_LIFECYCLE_LISTENERS = Arrays.asList(new RestServerLifecycleListener[] {
new NodeInitializerListener()
new NodeInitializerListener(),
new BubbleFirstTimeListener()
});

public static final String[] DEFAULT_ENV_FILE_PATHS = {


Načítá se…
Zrušit
Uložit