Skip to content

Commit

Permalink
Fix default cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
lvoloshyn-sekoia committed Dec 17, 2024
1 parent a551505 commit 2f9c219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TrendMicro/trendmicro_modules/trigger_vision_one_oat.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)

self.cursor = CheckpointDatetime(
path=self._data_path, start_at=timedelta(days=30), ignore_older_than=timedelta(days=365)
path=self._data_path, start_at=timedelta(hours=1), ignore_older_than=timedelta(days=14)
)
self.from_date = self.cursor.offset

Expand Down

0 comments on commit 2f9c219

Please sign in to comment.