Skip to content

Commit

Permalink
Merge pull request #9 from logzio/fixTimestampBug
Browse files Browse the repository at this point in the history
add fix following ICR-214
  • Loading branch information
8naama authored Mar 10, 2024
2 parents c231df6 + 4986fd4 commit aab453b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,8 @@ If you stopped the container, you can continue from the exact place you stopped,

## Changelog:

- **0.1.1**:
- Bug fix for `security_alerts` task fails on second cycle.
- **0.1.0**:
- Added `azure_mail_reports` type.
- **0.0.6**:
Expand Down
1 change: 1 addition & 0 deletions src/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ def get_start_date_filter(self) -> str:
if self._current_data_last_date is not None:
start_date_str = self._get_new_start_date()
new_start_date = start_date_str.split('.')[0]
new_start_date += 'Z' if not new_start_date.endswith('Z') else ''
else:
start_date = datetime.utcnow() - timedelta(days=self.base_data.settings.days_back_to_fetch)
new_start_date = start_date.isoformat(' ', 'seconds')
Expand Down

0 comments on commit aab453b

Please sign in to comment.