Skip to content

Commit

Permalink
quotation marks for strings
Browse files Browse the repository at this point in the history
  • Loading branch information
wowasa committed Sep 29, 2022
1 parent e523e92 commit 3f7c3e0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions crawler-conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ config:
- fetch.redirectCount
- http.method.head

http.agent.name: ${ENV-HTTP_AGENT_NAME}
http.agent.version: ${ENV-HTTP_AGENT_VERSION}
http.agent.description: ${ENV-HTTP_AGENT_DESCRIPTION}
http.agent.url: ${ENV-HTTP_AGENT_URL}
http.agent.email: ${ENV-HTTP_AGENT_EMAIL}
http.agent.name: "${ENV-HTTP_AGENT_NAME}"
http.agent.version: "${ENV-HTTP_AGENT_VERSION}"
http.agent.description: "${ENV-HTTP_AGENT_DESCRIPTION}"
http.agent.url: "${ENV-HTTP_AGENT_URL}"
http.agent.email: "${ENV-HTTP_AGENT_EMAIL}"
http.redirectLimit: ${ENV-HTTP_REDIRECT_LIMIT}
http.timeout: 5000

Expand Down Expand Up @@ -111,9 +111,9 @@ config:

#your SPRING configuration properties go here
SPING:
spring.datasource.url: ${ENV-DATABASE_URI}
spring.datasource.username: ${ENV-DATABASE_USERNAME}
spring.datasource.password: ${ENV-DATABASE_PASSWORD}
spring.datasource.url: "${ENV-DATABASE_URI}"
spring.datasource.username: "${ENV-DATABASE_USERNAME}"
spring.datasource.password: "${ENV-DATABASE_PASSWORD}"
spring.datasource.driver-class-name: org.mariadb.jdbc.Driver
spring.jpa.show-sql: false
spring.jpa.hibernate.ddl-auto: none
Expand Down

0 comments on commit 3f7c3e0

Please sign in to comment.