File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
core/src/main/groovy/noe/server Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ import javax.net.ssl.SSLSocketFactory
3434@Slf4j
3535class AS7 extends ServerAbstract implements WorkerServer {
3636
37- public static final String WELCOME_ROOT_CONTEXT = " Welcome to"
37+ public static final String WELCOME_ROOT_CONTEXT = " .*( Welcome to|HAL Management Console).* "
3838 public static final String ADDITIONAL_PARAMETERS_LIST = " ADDITIONAL_PARAMETERS_LIST"
3939 public static final String ADDITIONAL_ENV_VARIABLES_LIST = " ADDITIONAL_ENV_VARIABLES_LIST"
4040
@@ -315,6 +315,7 @@ class AS7 extends ServerAbstract implements WorkerServer {
315315 it. code 200
316316 it. enableJavaScript false
317317 it. content WELCOME_ROOT_CONTEXT
318+ it. contentAsRegex true
318319 it. timeout timeout * 1000
319320 it. webClient webClient
320321 it. swallowIOExceptions true
@@ -331,6 +332,7 @@ class AS7 extends ServerAbstract implements WorkerServer {
331332 it. code 200
332333 it. enableJavaScript false
333334 it. content WELCOME_ROOT_CONTEXT
335+ it. contentAsRegex true
334336 it. timeout timeout* 1000
335337 it. swallowIOExceptions true
336338 it. webConnectionTimeout 25000
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import sun.reflect.generics.reflectiveObjects.NotImplementedException
2626@Slf4j
2727class AS7Domain extends ServerAbstract {
2828
29- def static final WELCOME_ROOT_CONTEXT = ' .*(Welcome to|JBoss Management).*'
29+ def static final WELCOME_ROOT_CONTEXT = ' .*(Welcome to|JBoss Management|HAL Management Console ).*'
3030
3131 AS7Cli as7Cli // cliClient abstraction for running cli commands and generating cli
3232 Version eapVersion // eap version
You can’t perform that action at this time.
0 commit comments