hailin0 commented on code in PR #8446:
URL: https://github.com/apache/seatunnel/pull/8446#discussion_r1901776870
##########
seatunnel-e2e/seatunnel-connector-v2-e2e/connector-doris-e2e/src/test/java/org/apache/seatunnel/e2e/connector/doris/AbstractDorisIT.java:
##########
@@ -71,33 +71,36 @@ public abstract class AbstractDorisIT extends TestSuiteBase
implements TestResou
protected static final String DRIVER_CLASS = "com.mysql.cj.jdbc.Driver";
protected static final String DRIVER_JAR =
"https://repo1.maven.org/maven2/com/mysql/mysql-connector-j/8.0.32/mysql-connector-j-8.0.32.jar";
+ private static final boolean isGithubActionsEnv =
+ "true".equalsIgnoreCase(System.getenv("GITHUB_ACTIONS"));
@BeforeAll
@Override
public void startUp() {
+ log.info("isGithubActionsEnv: {}", isGithubActionsEnv);
container =
new GenericContainer<>(DOCKER_IMAGE)
.withNetwork(NETWORK)
.withNetworkAliases(HOST)
- .withPrivilegedMode(true)
- .withLogConsumer(
- new
Slf4jLogConsumer(DockerLoggerFactory.getLogger(DOCKER_IMAGE)));
Review Comment:
Why delete this log
--
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]