FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 42f658cf authored by L. Bower's avatar L. Bower
Browse files

merging changes from main

parent 08fe8e43
No related branches found
No related tags found
No related merge requests found
...@@ -113,8 +113,9 @@ def get_ODK_form_as_csv(form_credentials: dict, jobPath: str, config: dict, stat ...@@ -113,8 +113,9 @@ def get_ODK_form_as_csv(form_credentials: dict, jobPath: str, config: dict, stat
try: try:
# check that python or perl coordinator script succeeded for that date # check that python or perl coordinator script succeeded for that date
success_py = os.path.isfile(f"{past_jobPath}/STATUS_SUCCESS") success_py = os.path.isfile(f"{past_jobPath}/STATUS_SUCCESS")
success_with_warning_py = os.path.isfile(f"{past_jobPath}/STATUS_SUCCESS_WITH_WARNING")
success_perl = os.path.isfile(f"{past_jobPath}/SURVEYDATA_SUCCESS.txt") success_perl = os.path.isfile(f"{past_jobPath}/SURVEYDATA_SUCCESS.txt")
assert success_py or success_perl assert success_py or success_with_warning_py or success_perl
#logger.warning(f"Temporary rename of expected previous download, for jobs before ~Apr 2021") #logger.warning(f"Temporary rename of expected previous download, for jobs before ~Apr 2021")
#past_ODK_csv_filename = f"SurveyData.csv" #past_ODK_csv_filename = f"SurveyData.csv"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment