File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
aws/junit5-qe-openvidu/src/test/java/io/elastest/qe/openvidu Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ public static void initParameters() {
60
60
String usersSession = System .getenv ("USERS_BY_SESSION" );
61
61
String secondsOfWait = System .getenv ("SECONDS_OF_WAIT" );
62
62
String browserPollInterval = System .getenv ("BROWSER_POLL_INTERVAL" );
63
+ String browsersAmiID = System .getenv ("BROWSERS_AMI_ID" );
63
64
64
65
if (openviduSecret != null ) {
65
66
OPENVIDU_SECRET = openviduSecret ;
@@ -78,6 +79,10 @@ public static void initParameters() {
78
79
BROWSER_POLL_INTERVAL = Integer .parseInt (browserPollInterval );
79
80
}
80
81
82
+ if (browsersAmiID != null && !"" .equals (browsersAmiID )) {
83
+ BROWSERS_AMI_ID = browsersAmiID ;
84
+ }
85
+
81
86
}
82
87
83
88
@ BeforeAll
You can’t perform that action at this time.
0 commit comments