Skip to content

Commit

Permalink
feat: fixes cleanup interval not present in config files
Browse files Browse the repository at this point in the history
  • Loading branch information
rubvalave committed Jul 11, 2022
1 parent 3b06269 commit d7d8d2a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions api/apps/api/config/custom-environment-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,8 @@
},
"signUpConfirmation": {
"tokenPrefix": "SIGNUP_CONFIRMATION_TOKEN_PREFIX"
},
"cleanupCronJobSettings": {
"interval": "CLEANUP_CRON_INTERVAL"
}
}
3 changes: 3 additions & 0 deletions api/apps/api/config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,8 @@
},
"signUpConfirmation": {
"tokenPrefix": "/auth/sign-up-confirmation?token="
},
"cleanupCronJobSettings": {
"interval": "0 0-23/6 * * *"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@
}
},
"cleanupCronJobSettings": {
"interval": "0 0-23/6 * * *"
"interval": "CLEANUP_CRON_INTERVAL"
}
}
3 changes: 3 additions & 0 deletions api/apps/geoprocessing/config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,8 @@
},
"marxan": {
"bin": "/opt/marxan-geoprocessing/apps/geoprocessing/src/marxan/marxan-linux-4-0-6"
},
"cleanupCronJobSettings": {
"interval": "0 0-23/6 * * *"
}
}

0 comments on commit d7d8d2a

Please sign in to comment.