Skip to content

Commit

Permalink
reset something
Browse files Browse the repository at this point in the history
  • Loading branch information
hunter-cloud09 committed Mar 1, 2024
1 parent 749cb47 commit d1e5327
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 27 deletions.
2 changes: 1 addition & 1 deletion seatunnel-server/seatunnel-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
<scope>compile</scope>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ public Result<Long> jobExecute(Integer userId, Long jobDefineId) {
}

public String writeJobConfigIntoConfFile(String jobConfig, Long jobDefineId) {
String projectRoot = System.getProperty("SEATUNNEL_HOME");
String projectRoot = System.getProperty("user.dir");
String filePath =
projectRoot + File.separator + "json" + File.separator + jobDefineId + ".conf";
projectRoot + File.separator + "profile" + File.separator + jobDefineId + ".conf";
try {
File file = new File(filePath);
if (!file.exists()) {
Expand Down

This file was deleted.

0 comments on commit d1e5327

Please sign in to comment.