Skip to content

Commit

Permalink
Merge branch 'dev' into dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
liunaijie committed Nov 3, 2023
2 parents 99abcdc + 70cca95 commit f6eb7a2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,16 @@ protected String getConnectorType() {
return "seatunnel";
}

@Override
protected String getSavePointCommand() {
return "-s";
}

@Override
protected String getRestoreCommand() {
return "-r";
}

@Override
protected String getConnectorNamePrefix() {
return "connector-";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

package org.apache.seatunnel.engine.e2e;

import org.apache.seatunnel.common.config.Common;
import org.apache.seatunnel.common.config.DeployMode;
import org.apache.seatunnel.engine.client.SeaTunnelClient;
import org.apache.seatunnel.engine.client.job.ClientJobExecutionEnvironment;
import org.apache.seatunnel.engine.client.job.ClientJobProxy;
Expand Down Expand Up @@ -61,6 +63,7 @@ void beforeClass() throws Exception {
SeaTunnelConfig seaTunnelConfig = ConfigProvider.locateAndGetSeaTunnelConfig();
seaTunnelConfig.getHazelcastConfig().setClusterName(testClusterName);
hazelcastInstance = SeaTunnelServerStarter.createHazelcastInstance(seaTunnelConfig);
Common.setDeployMode(DeployMode.CLIENT);
String filePath = TestUtils.getResource("stream_fakesource_to_file.conf");
JobConfig jobConfig = new JobConfig();
jobConfig.setName("fake_to_file");
Expand Down

0 comments on commit f6eb7a2

Please sign in to comment.