Skip to content

Commit

Permalink
Cs limit in idp detections (demisto#29550)
Browse files Browse the repository at this point in the history
* revert change in idp detections

* rn

* rn

* fixes

* revert limit

---------

Co-authored-by: YuvHayun <yhayun011@gmail.com>
  • Loading branch information
daryakoval and YuvHayun committed Sep 7, 2023
1 parent dda269c commit 47738d5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Expand Up @@ -1369,7 +1369,7 @@ def get_idp_detections_ids(filter_arg=None, offset: int = 0, limit=INCIDENTS_PER
:rtype ``dict``
"""
params = {
'sort': 'created_timestamp.asc',
'sort': 'start_time.asc',
'offset': offset,
'filter': filter_arg
}
Expand Down Expand Up @@ -2632,7 +2632,7 @@ def fetch_incidents():
date_format=IDP_DATE_FORMAT)
fetch_limit = current_fetch_info_idp_detections.get('limit') or INCIDENTS_PER_FETCH
fetch_query = demisto.params().get('idp_detections_fetch_query', "")
filter = f"product:'idp'+created_timestamp:>'{start_fetch_time}'"
filter = f"product:'idp'+start_time:>'{start_fetch_time}'"

if fetch_query:
filter += f"+{fetch_query}"
Expand Down
6 changes: 6 additions & 0 deletions Packs/CrowdStrikeFalcon/ReleaseNotes/1_11_9.md
@@ -0,0 +1,6 @@

#### Integrations

##### CrowdStrike Falcon

- Fixed an issue where there was inconsistency in the last_run object for **IDP Detection** incident type.
2 changes: 1 addition & 1 deletion Packs/CrowdStrikeFalcon/pack_metadata.json
Expand Up @@ -2,7 +2,7 @@
"name": "CrowdStrike Falcon",
"description": "The CrowdStrike Falcon OAuth 2 API (formerly the Falcon Firehose API), enables fetching and resolving detections, searching devices, getting behaviors by ID, containing hosts, and lifting host containment.",
"support": "xsoar",
"currentVersion": "1.11.8",
"currentVersion": "1.11.9",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down

0 comments on commit 47738d5

Please sign in to comment.