File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
tests/bulk-upload/scripts Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -415,7 +415,12 @@ def upload_lg_files_to_staging():
415415def removing_previous_uploads ():
416416 dynamodb = boto3 .resource ("dynamodb" )
417417
418- tables_to_truncate = [BULK_UPLOAD_TABLE_NAME , LG_TABLE_NAME , LG_STITCH_TABLE_NAME ]
418+ tables_to_truncate = [
419+ BULK_UPLOAD_TABLE_NAME ,
420+ LG_TABLE_NAME ,
421+ LG_STITCH_TABLE_NAME ,
422+ LG_UNSTITCHED_TABLE_NAME ,
423+ ]
419424
420425 for table_name in tables_to_truncate :
421426 table = dynamodb .Table (table_name )
@@ -574,6 +579,7 @@ def get_user_input():
574579 BULK_UPLOAD_TABLE_NAME = f"{ ENVIRONMENT } _BulkUploadReport"
575580 LG_TABLE_NAME = f"{ ENVIRONMENT } _LloydGeorgeReferenceMetadata"
576581 LG_STITCH_TABLE_NAME = f"{ ENVIRONMENT } _LloydGeorgeStitchJobMetadata"
582+ LG_UNSTITCHED_TABLE_NAME = f"{ ENVIRONMENT } _UnstitchedLloydGeorgeReferenceMetadata"
577583
578584 if not args .environment :
579585 env_confirmation = input (
You can’t perform that action at this time.
0 commit comments