Skip to content

Commit

Permalink
Fix fetching incidents (#34115) (#34124)
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Gutierrez <[email protected]>
  • Loading branch information
content-bot and chkp-christiang authored May 1, 2024
1 parent b7adefa commit 626c137
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
urllib3.disable_warnings()

DATE_FORMAT = '%Y-%m-%dT%H:%M:%SZ'
FETCH_INTERVAL_DEFAULT = 1
MAX_FETCH_DEFAULT = 10
SAAS_NAMES = [
'office365_emails',
Expand Down Expand Up @@ -605,7 +606,7 @@ def main() -> None: # pragma: no cover
'severities': [SEVERITY_VALUES.get(x.lower()) for x in argToList(params.get('event_severity'))],
'threat_types': [x.lower().replace(' ', '_') for x in argToList(params.get('threat_type'))],
'max_fetch': int(params.get('max_fetch', MAX_FETCH_DEFAULT)),
'fetch_interval': params.get('incidentFetchInterval'),
'fetch_interval': int(params.get('incidentFetchInterval', FETCH_INTERVAL_DEFAULT)),
}
fetch_incidents(client, **kwargs)
elif command == 'checkpointhec-get-entity':
Expand Down
2 changes: 1 addition & 1 deletion Packs/CheckPointHEC/Integrations/CheckPointHEC/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The Best Way to Protect Enterprise Email & Collaboration from phishing, malware, account takeover, data loss, etc.
This integration was integrated and tested with version 1.1.0 of CheckPointHEC
This integration was integrated and tested with version 1.1.1 of CheckPointHEC

## Configure Check Point Harmony Email and Collaboration (HEC) on Cortex XSOAR

Expand Down
6 changes: 6 additions & 0 deletions Packs/CheckPointHEC/ReleaseNotes/1_1_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#### Integrations

##### Check Point Harmony Email and Collaboration (HEC)

- Fixed an issue on fetching incidents.

2 changes: 1 addition & 1 deletion Packs/CheckPointHEC/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Check Point Harmony Email and Collaboration (HEC)",
"description": "The Best Way to Protect Enterprise Email & Collaboration from phishing, malware, account takeover, data loss, etc.",
"support": "partner",
"currentVersion": "1.1.0",
"currentVersion": "1.1.1",
"author": "Check Point Harmony Email & Collaboration (HEC)",
"url": "https://supportcenter.checkpoint.com/",
"email": "[email protected]",
Expand Down

0 comments on commit 626c137

Please sign in to comment.