Skip to content

Commit

Permalink
fix put json req
Browse files Browse the repository at this point in the history
  • Loading branch information
rombernier committed Dec 11, 2024
2 parents 183816d + 1bfaaa4 commit 12f63ea
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Sekoia.io/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Update synchronize asset action

## 2024-11-27 - 2.65.7

### Changed

- Update get alert action with an option to get the associated cases
git
## 2024-11-27 - 2.65.4

### Changed
Expand Down
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

## 2024-12-10 - 1.19.7

### Changed

- Handle the timeout exception

## 2024-12-10 - 1.19.6

### Fixed
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.19.6",
"version": "1.19.7",
"categories": [
"Endpoint"
]
Expand Down
4 changes: 4 additions & 0 deletions SentinelOne/sentinelone_module/singularity/connectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ async def async_run(self) -> None: # pragma: no cover
self.log(message=error.message, level="critical")
await asyncio.sleep(self.configuration.frequency)

except TimeoutError as error:
self.log(message="A timeout was raised by the client", level="warning")
await asyncio.sleep(self.configuration.frequency)

except Exception as error:
self.log_exception(error)
await asyncio.sleep(self.configuration.frequency)
Expand Down

0 comments on commit 12f63ea

Please sign in to comment.