Skip to content

Commit

Permalink
Fixed BEFORE date for loan_transactions & gl_journal_entries streams.…
Browse files Browse the repository at this point in the history
… Added 1 second in the BEFORE value.
  • Loading branch information
shantanu73 committed Mar 20, 2024
1 parent da24d92 commit a8d46dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tap_mambu/tap_generators/gl_journal_entries_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def modify_request_params(self, start, end):
{
"field": "creationDate",
"operator": "BEFORE",
"value": datetime.strftime(end, '%Y-%m-%dT00:00:00.000000Z')
"value": datetime.strftime(end, '%Y-%m-%dT00:00:01.000000Z')
}
]

Expand Down
2 changes: 1 addition & 1 deletion tap_mambu/tap_generators/loan_transactions_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def modify_request_params(self, start, end):
{
"field": "creationDate",
"operator": "BEFORE",
"value": datetime.strftime(end, '%Y-%m-%dT00:00:00.000000Z')
"value": datetime.strftime(end, '%Y-%m-%dT00:00:01.000000Z')
}
]

Expand Down

0 comments on commit a8d46dd

Please sign in to comment.