@@ -347,7 +347,7 @@ private JsonObject produceDeltasBlocking() throws Exception {
347347 DeltaProductionResult deltaResult = this .produceBatchedDeltas ();
348348
349349 // Determine status based on results
350- if (deltaResult .getDeltasProduced () == 0 && deltaResult .stoppedDueToRecentMessages ()) {
350+ if (deltaResult .getDeltasProduced () == 0 && deltaResult .stoppedDueToMessagesTooRecent ()) {
351351 // No deltas produced because all messages were too recent
352352 result .put ("status" , "skipped" );
353353 result .put ("reason" , "All messages too recent" );
@@ -376,7 +376,7 @@ private JsonObject produceDeltasBlocking() throws Exception {
376376 private DeltaProductionResult produceBatchedDeltas () throws IOException {
377377 int deltasProduced = 0 ;
378378 int totalEntriesProcessed = 0 ;
379- boolean stoppedDueToRecentMessages = false ;
379+ boolean stoppedDueToMessagesTooRecent = false ;
380380
381381 long jobStartTime = OptOutUtils .nowEpochSeconds ();
382382 LOGGER .info ("Starting delta production from SQS queue (maxMessagesPerFile: {})" , this .maxMessagesPerFile );
@@ -392,7 +392,7 @@ private DeltaProductionResult produceBatchedDeltas() throws IOException {
392392
393393 // If no messages, we're done (queue empty or messages too recent)
394394 if (windowResult .isEmpty ()) {
395- stoppedDueToRecentMessages = windowResult .stoppedDueToRecentMessages ();
395+ stoppedDueToMessagesTooRecent = windowResult .stoppedDueToMessagesTooRecent ();
396396 LOGGER .info ("Delta production complete - no more eligible messages" );
397397 break ;
398398 }
@@ -426,7 +426,7 @@ private DeltaProductionResult produceBatchedDeltas() throws IOException {
426426 LOGGER .info ("Delta production complete: took {}s, produced {} deltas, processed {} entries" ,
427427 totalDuration , deltasProduced , totalEntriesProcessed );
428428
429- return new DeltaProductionResult (deltasProduced , totalEntriesProcessed , stoppedDueToRecentMessages );
429+ return new DeltaProductionResult (deltasProduced , totalEntriesProcessed , stoppedDueToMessagesTooRecent );
430430 }
431431
432432 /**
0 commit comments