Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Sep 17, 2024
1 parent 68d9616 commit f8e171f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,7 @@ class Suite implements GroovyInterceptable {
.pollInterval(100, TimeUnit.MILLISECONDS).await().until(() -> {
def ipList = [:]
def portList = [:]
(ipList, portList) = getBEHostAndHTTPPort()
getBackendIpHttpPort(ipList, portList)
ipList.each { beid, ip ->
if (ip == host && portList[beid] as int == port) {
return true;
Expand All @@ -1523,7 +1523,7 @@ class Suite implements GroovyInterceptable {
.pollInterval(100, TimeUnit.MILLISECONDS).await().until(() -> {
def ipList = [:]
def portList = [:]
(ipList, portList) = getBEHostAndHTTPPort()
getBackendIpHttpPort(ipList, portList)
ipList.each { beid, ip ->
if (ip == host && portList[beid] as int == port) {
return false;
Expand Down

0 comments on commit f8e171f

Please sign in to comment.