Skip to content

Commit

Permalink
Merge pull request #11654 from nitsan-tzur/epm-arrival-time
Browse files Browse the repository at this point in the history
Use arrivalTime to avoid missing events
  • Loading branch information
v-prasadboke authored Jan 23, 2025
2 parents cba0d00 + 10c866f commit ea9349d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def main(mytimer: func.TimerRequest) -> None:
except Exception as err:
logging.error("CyberArkEPMServerURL is invalid")
return
filter_date = '{"filter": "eventDate GE ' + str(start_time) + ' AND eventDate LE ' + end_time + '"}'
filter_date = '{"filter": "arrivalTime GE ' + str(start_time) + ' AND arrivalTime LE ' + end_time + '"}'
aggregated_events = []
raw_events = []
aggregated_policy_audits = []
Expand Down
1 change: 1 addition & 0 deletions Solutions/CyberArkEPM/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
| **Version** | **Date Modified (DD-MM-YYYY)** | **Change History** |
|-------------|--------------------------------|------------------------------------------------|
| 3.0.0 | 27-07-2023 | Updated solution to fix deployment validations |

0 comments on commit ea9349d

Please sign in to comment.