Skip to content

Commit 2bb0516

Browse files
authored
Revert "Fix database lose data in standalone (#7556)"
This reverts commit 82075a4.
1 parent 871db33 commit 2bb0516

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/aspect/AccessLogAnnotation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
@Documented
2929
public @interface AccessLogAnnotation {
3030
// ignore request args
31-
String[] ignoreRequestArgs() default {"loginUser"};
31+
String[] ignoreRequestArgs() default {};
3232

3333
boolean ignoreRequest() default false;
3434

dolphinscheduler-standalone-server/src/main/resources/application.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,9 @@ spring:
3131
- taskDefinition
3232
caffeine:
3333
spec: maximumSize=100,expireAfterWrite=300s,recordStats
34-
sql:
35-
init:
36-
schema-locations: classpath:sql/dolphinscheduler_h2.sql
3734
datasource:
3835
driver-class-name: org.h2.Driver
39-
url: jdbc:h2:mem:dolphinscheduler;MODE=MySQL;DB_CLOSE_DELAY=-1;DATABASE_TO_LOWER=true
36+
url: jdbc:h2:mem:dolphinscheduler;MODE=MySQL;DB_CLOSE_DELAY=-1;DATABASE_TO_LOWER=true;INIT=runscript from 'classpath:sql/dolphinscheduler_h2.sql'
4037
username: sa
4138
password: ""
4239
hikari:

0 commit comments

Comments
 (0)