Skip to content

Commit 591bb91

Browse files
committed
#937: Comment out grace period logic in DISP-S1 triggering
1 parent 10e2868 commit 591bb91

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

data_subscriber/cslc/cslc_query.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ def determine_download_granules(self, granules):
186186
if len(download_batch) == max_bursts: # Rule 1
187187
logger.info(f"Download all granules for {batch_id} because all granules are present")
188188
new_downloads = True
189+
'''As per email from Heresh at ADT on 7-25-2024, we will not use rule 2. We will always only process full-frames
189190
else:
190191
# Rule 2
191192
min_creation_time = current_time
@@ -201,7 +202,7 @@ def determine_download_granules(self, granules):
201202
logger.info(f"Download all granules for {batch_id} because it's been {mins_since_first_ingest} minutes \
202203
since the first CSLC file for the batch was ingested which is greater than the grace period of {self.grace_mins} minutes")
203204
new_downloads = True
204-
#print(batch_id, download_batch)
205+
#print(batch_id, download_batch)'''
205206

206207
if new_downloads:
207208

0 commit comments

Comments
 (0)