Skip to content

Commit

Permalink
Merge branch 'dev' into jdbc-connect-parameters-json-validation-question
Browse files Browse the repository at this point in the history
  • Loading branch information
SbloodyS authored Nov 8, 2024
2 parents 797bce0 + 53efdaa commit a080642
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-XX:+IgnoreUnrecognizedVMOptions
-XX:+PrintGCDateStamps
-XX:+PrintGCDetails
-Xloggc:gc.log
-Xloggc:gc-%t.log

-XX:-OmitStackTraceInFastThrow
-XX:+ExitOnOutOfMemoryError
Expand Down
2 changes: 1 addition & 1 deletion dolphinscheduler-api/src/main/bin/jvm_args_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-XX:+IgnoreUnrecognizedVMOptions
-XX:+PrintGCDateStamps
-XX:+PrintGCDetails
-Xloggc:gc.log
-Xloggc:gc-%t.log

-XX:-OmitStackTraceInFastThrow
-XX:+ExitOnOutOfMemoryError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public Result createProjectParameter(User loginUser, long projectCode, String pr
.code(CodeGenerateUtils.genCode())
.projectCode(projectCode)
.userId(loginUser.getId())
.operator(loginUser.getId())
.createTime(now)
.updateTime(now)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ public void testCreateProjectParameter() {
result = projectParameterService.createProjectParameter(loginUser, projectCode, "key1", "value",
DataType.VARCHAR.name());
assertEquals(Status.SUCCESS.getCode(), result.getCode());

ProjectParameter projectParameter = (ProjectParameter) result.getData();
assertEquals(loginUser.getId(), projectParameter.getOperator());
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion dolphinscheduler-master/src/main/bin/jvm_args_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-XX:+IgnoreUnrecognizedVMOptions
-XX:+PrintGCDateStamps
-XX:+PrintGCDetails
-Xloggc:gc.log
-Xloggc:gc-%t.log

-XX:-OmitStackTraceInFastThrow
-XX:+ExitOnOutOfMemoryError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-XX:+IgnoreUnrecognizedVMOptions
-XX:+PrintGCDateStamps
-XX:+PrintGCDetails
-Xloggc:gc.log
-Xloggc:gc-%t.log

-XX:-OmitStackTraceInFastThrow
-XX:+ExitOnOutOfMemoryError
Expand Down
2 changes: 1 addition & 1 deletion dolphinscheduler-worker/src/main/bin/jvm_args_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-XX:+IgnoreUnrecognizedVMOptions
-XX:+PrintGCDateStamps
-XX:+PrintGCDetails
-Xloggc:gc.log
-Xloggc:gc-%t.log

-XX:-OmitStackTraceInFastThrow
-XX:+ExitOnOutOfMemoryError
Expand Down

0 comments on commit a080642

Please sign in to comment.