KiranVelumuri commented on code in PR #5641:
URL: https://github.com/apache/hive/pull/5641#discussion_r1997656587


##########
itests/util/src/main/java/org/apache/hadoop/hive/ql/externalDB/MySQLExternalDB.java:
##########
@@ -53,8 +53,8 @@ public String[] getDockerAdditionalArgs() {
     }
 
     public boolean isContainerReady(ProcessResults pr) {
-        Pattern pat = Pattern.compile("ready for connections");
+        Pattern pat = Pattern.compile("mysqld.*ready for 
connections.*port.*3306");
         Matcher m = pat.matcher(pr.stderr);
-        return m.find() && m.find();
+        return m.find();

Review Comment:
   These changes are part of MySQL and MariaDB upgrade in #5525. Will rebase 
once it is merged.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org
For additional commands, e-mail: gitbox-h...@hive.apache.org

Reply via email to