Skip to content

Commit

Permalink
Merge pull request Azure#8282 from mnolan-ipsec/master
Browse files Browse the repository at this point in the history
CiscoDuoSecurity Function App code update
  • Loading branch information
v-dvedak authored Jun 16, 2023
2 parents 1217aed + 28a0d60 commit 106c3a0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def process_auth_logs(admin_api: duo_client.Admin, state_manager: StateManager,
maxtime = int(time.time() - 120) * 1000
diff = maxtime - mintime
if(diff > 3600000):
maxtime = (int(mintime) + 3600) * 1000
maxtime = (int(mintime/1000) + 3600) * 1000

for event in get_auth_logs(admin_api, mintime, maxtime):
sentinel.send(event)
Expand Down
Binary file not shown.

0 comments on commit 106c3a0

Please sign in to comment.