Skip to content

Commit

Permalink
feat: Add option allowLoadLocalInfile=true to DB_URL (#2114) (#2181)
Browse files Browse the repository at this point in the history
* Add option `allowLoadLocalInfile=true` to `DB_URL`

* Fix typo

* Fix typo
  • Loading branch information
tschaffter authored Sep 29, 2023
1 parent 1a46a28 commit 4dba30a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/openchallenges/challenge-service/.env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SERVER_PORT=8085
KEYCLOAK_URL=http://openchallenges-keycloak:8080
SERVICE_REGISTRY_URL=http://openchallenges-service-registry:8081/eureka
DB_URL=jdbc:mysql://openchallenges-mariadb:3306/challenge_service
DB_URL=jdbc:mysql://openchallenges-mariadb:3306/challenge_service?allowLoadLocalInfile=true
2 changes: 1 addition & 1 deletion apps/openchallenges/organization-service/.env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SERVER_PORT=8084
KEYCLOAK_URL=http://openchallenges-keycloak:8080
SERVICE_REGISTRY_URL=http://openchallenges-service-registry:8081/eureka
DB_URL=jdbc:mysql://openchallenges-mariadb:3306/organization_service
DB_URL=jdbc:mysql://openchallenges-mariadb:3306/organization_service?allowLoadLocalInfile=true

0 comments on commit 4dba30a

Please sign in to comment.