You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privatestaticfinalintPROCESS_MESSAGE_COUNT = 8; // Number of "process" messages to send
54
-
privatestaticfinalintMESSAGE_INTERVAL_MS = 1500;
53
+
privatestaticfinalintPROCESS_MESSAGE_COUNT = Integer.parseInt(System.getProperty("process.message.count", "8")); // Number of "process" messages to send
privatestaticfinalbooleanCI_MODE = Boolean.parseBoolean(System.getProperty("ci.mode", "false")); // Early exit when 2 pods observed
56
+
privatestaticfinalintMAX_MESSAGES_UNTIL_TWO_PODS = Integer.parseInt(System.getProperty("max.messages.until.two.pods", "20")); // Max messages before giving up
0 commit comments