Skip to content

Commit

Permalink
Merge pull request #1245 from SEKOIA-IO/hotfix/sentinelone_singularit…
Browse files Browse the repository at this point in the history
…y_fix

Hotfix: SentinelOne Identity fix loop iteration
  • Loading branch information
squioc authored Jan 10, 2025
2 parents 518bf39 + 9e4a7bc commit 184968c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions SentinelOne/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 2025-01-10 - 1.20.1

### Fixed

- Fix for singularity connector for iteration through correct list of items

## 2025-01-07 - 1.20.0

### Changed
Expand Down
2 changes: 1 addition & 1 deletion SentinelOne/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"name": "SentinelOne",
"uuid": "ff675e74-e5c1-47c8-a571-d207fc297464",
"slug": "sentinelone",
"version": "1.20.0",
"version": "1.20.1",
"categories": [
"Endpoint"
]
Expand Down
2 changes: 1 addition & 1 deletion SentinelOne/sentinelone_module/singularity/connectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def single_run(self) -> int:

# Push the collected alerts
pushed_events = await self.push_data_to_intakes(
[orjson.dumps(detailed_alerts).decode("utf-8") for alert in alerts]
[orjson.dumps(alert).decode("utf-8") for alert in detailed_alerts]
)

result += len(pushed_events)
Expand Down

0 comments on commit 184968c

Please sign in to comment.