Skip to content

Commit

Permalink
Revert "Fix database lose data in standalone (#7556)" (#7604)
Browse files Browse the repository at this point in the history
This reverts commit 82075a4.
  • Loading branch information
caishunfeng authored Dec 24, 2021
1 parent 871db33 commit 97aecb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@Documented
public @interface AccessLogAnnotation {
// ignore request args
String[] ignoreRequestArgs() default {"loginUser"};
String[] ignoreRequestArgs() default {};

boolean ignoreRequest() default false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,9 @@ spring:
- taskDefinition
caffeine:
spec: maximumSize=100,expireAfterWrite=300s,recordStats
sql:
init:
schema-locations: classpath:sql/dolphinscheduler_h2.sql
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:mem:dolphinscheduler;MODE=MySQL;DB_CLOSE_DELAY=-1;DATABASE_TO_LOWER=true
url: jdbc:h2:mem:dolphinscheduler;MODE=MySQL;DB_CLOSE_DELAY=-1;DATABASE_TO_LOWER=true;INIT=runscript from 'classpath:sql/dolphinscheduler_h2.sql'
username: sa
password: ""
hikari:
Expand Down

0 comments on commit 97aecb4

Please sign in to comment.