Skip to content

Commit

Permalink
[BI-2450] made .env variables uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
davedrp committed Feb 24, 2025
1 parent 10e74d0 commit f83b841
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ BRAPI_VENDOR_SUBMISSION_ENABLED=false #can a submission be sent to a vendor via
BRAPI_VENDOR_CHECK_FREQUENCY=1d #how often to check for vendor updates for sample submissions

#The initial caching of each type of object needs to be staggered by the prescribed number of seconds
germplasm_start_delay=5s
study_start_delay=10s
trial_start_delay=15s
trait_start_delay=20s
observation_start_delay=25s
observation_unit_start_delay=30s
GERMPLASM_START_DELAY=5s
STUDY_START_DELAY=10s
TRIAL_START_DELAY=15s
TRAIT_START_DELAY=20s
OBSERVATION_START_DELAY=25s
OBSERVATION_UNIT_START_DELAY=30s
12 changes: 6 additions & 6 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ aws:
bucket: ${AWS_GENO_BUCKET}
startup:
delay:
germplasm: ${germplasm_start_delay:2s}
study: ${study_start_delay:2s}
trial: ${trial_start_delay:2s}
trait: ${trait_start_delay:2s}
observation: ${observation_start_delay:3s}
observation_unit: ${observation_unit_start_delay:3s}
germplasm: ${GERMPLASM_START_DELAY:2s}
study: ${STUDY_START_DELAY:2s}
trial: ${TRIAL_START_DELAY:2s}
trait: ${TRAIT_START_DELAY:2s}
observation: ${OBSERVATION_START_DELAY:3s}
observation_unit: ${OBSERVATION_UNIT_START_DELAY:3s}

0 comments on commit f83b841

Please sign in to comment.