forked from zendesk/maxwell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatch.txt
13 lines (12 loc) · 958 Bytes
/
patch.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/test/java/com/zendesk/maxwell/MysqlIsolatedServer.java b/src/test/java/com/zendesk/maxwell/MysqlIsolatedServer.java
index 0758bde..c872bde 100644
--- a/src/test/java/com/zendesk/maxwell/MysqlIsolatedServer.java
+++ b/src/test/java/com/zendesk/maxwell/MysqlIsolatedServer.java
@@ -28,7 +28,7 @@ public class MysqlIsolatedServer {
public void boot() throws IOException, SQLException, InterruptedException {
final String dir = System.getProperty("user.dir");
- ProcessBuilder pb = new ProcessBuilder(dir + "/src/test/onetimeserver", "--mysql-version=" + this.getVersion(),
+ ProcessBuilder pb = new ProcessBuilder(dir + "/src/test/onetimeserver", "--debug", "--mysql-version=" + this.getVersion(),
"--log-bin=master", "--binlog_format=row", "--innodb_flush_log_at_trx_commit=1", "--server_id=" + SERVER_ID);
LOGGER.debug("booting onetimeserver: " + StringUtils.join(pb.command(), " "));
Process p = pb.start();