Skip to content

Commit

Permalink
[PRDP-232] feat: fixed ReceiptCosmosClientImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
alexyey committed Nov 28, 2023
1 parent 6b945f8 commit c929184
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public Iterable<FeedResponse<Receipt>> getFailedReceiptDocuments(String continua
//Build query
String query = "SELECT * FROM c WHERE c.status = 'FAILED' or c.status = 'NOT_QUEUE_SENT' or " +
"( c.status= = 'INSERTED' AND ( " + OffsetDateTime.now().toInstant().toEpochMilli() +
" c.inserted_at) >= " + millisDiff + " )";
" - c.inserted_at) >= " + millisDiff + " )";

//Query the container
return cosmosContainer
Expand Down

0 comments on commit c929184

Please sign in to comment.