azexcy commented on code in PR #19361:
URL: https://github.com/apache/shardingsphere/pull/19361#discussion_r925340895
##########
shardingsphere-test/shardingsphere-integration-test/shardingsphere-integration-test-scaling/src/test/java/org/apache/shardingsphere/integration/data/pipeline/framework/container/proxy/ShardingSphereProxyDockerContainer.java:
##########
@@ -44,9 +44,9 @@ public ShardingSphereProxyDockerContainer(final DatabaseType
databaseType) {
protected void configure() {
withExposedPorts(3307);
mapConfigurationFiles();
- if (DatabaseTypeUtil.isPostgreSQL(databaseType) ||
DatabaseTypeUtil.isOpenGauss(databaseType)) {
+ if (DatabaseTypeUtil.isPostgreSQL(databaseType)) {
setWaitStrategy(new JDBCConnectionWaitStrategy(() ->
DriverManager.getConnection(DataSourceEnvironment.getURL(databaseType,
getHost(), getMappedPort(3307), "postgres"), "root", "root")));
Review Comment:
Previously it was to ensure that the proxy was ready to be connected, but
now I test find it's not required, and opengauss can't use it now, so I remove
it
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]