Skip to content

Commit

Permalink
cleanup todos
Browse files Browse the repository at this point in the history
Co-authored-by: Sylvie <[email protected]>
Co-authored-by: saquino0827 <[email protected]>
Co-authored-by: GilmoreA6 <[email protected]>
Co-authored-by: basiliskus <[email protected]>
  • Loading branch information
5 people committed Jan 8, 2025
1 parent ef12692 commit c95c0ad
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public static FileFetcher getInstance() {
return INSTANCE;
}

// TODO - we need to modify the guts to only grab the golden or automated path
@Override
public List<HL7FileStream> fetchFiles() {
String rse2ELocalInputFilePath = System.getenv("RSE2E_LOCAL_INPUT_FILE_PATH");
Expand All @@ -63,7 +62,6 @@ public List<HL7FileStream> fetchFiles() {
LocalDate today = LocalDate.now(TIME_ZONE);
String datePrefix = AzureBlobHelper.buildDatePathPrefix(today);

// TODO - update base on AzureBlobOrganizer
String pathPrefix = datePrefix + "Automated/";
if (rse2ELocalInputFilePath.contains("GoldenCopy")) {
pathPrefix = datePrefix + "GoldenCopy/";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@ public void organizeAndCleanupBlobsByDate(int retentionDays, ZoneId timeZone) {
continue;
}

// TODO - separate the content by golden or automated so it can be distinguished
// when its pulled down and modify destinationName to be test folder specific
// possibly use a different receiver and filter on that

String testTypeAndSourceName = "Automated/" + sourceName;
if (sourceBlob.getBlobName().contains("GOLDEN-COPY")) {
testTypeAndSourceName = "GoldenCopy/" + sourceName;
Expand Down

0 comments on commit c95c0ad

Please sign in to comment.