File tree 3 files changed +9
-3
lines changed
Integrations/Rapid7_InsightIDR
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -1745,7 +1745,7 @@ def main():
1745
1745
params = demisto .params ()
1746
1746
region = params .get ("region" , {})
1747
1747
api_key = params .get ("apikey_creds" , {}).get ("password" ) or params .get ("apiKey" , {})
1748
- is_multi_customer = argToBoolean (params [ "is_multi_customer" ] )
1748
+ is_multi_customer = argToBoolean (params . get ( "is_multi_customer" , "false" ) )
1749
1749
max_fetch = params .get ("max_fetch" , "50" )
1750
1750
1751
1751
base_url = f"https://{ region } .api.insight.rapid7.com/"
@@ -1774,7 +1774,7 @@ def main():
1774
1774
elif demisto .args ().get ("api_version" ) == API_V2 :
1775
1775
api_version = API_V2
1776
1776
else :
1777
- api_version = API_V2 if argToBoolean (demisto .params ().get ("is_v2" )) else API_V1
1777
+ api_version = API_V2 if argToBoolean (demisto .params ().get ("is_v2" , "false" )) else API_V1
1778
1778
1779
1779
api_version_constants : Constants = {
1780
1780
API_V1 : ConstantsV1 ,
Original file line number Diff line number Diff line change
1
+
2
+ #### Integrations
3
+
4
+ ##### Rapid7 InsightIDR
5
+
6
+ - Fixed an issue where upgrading to version ` 2.0.0 ` without reconfiguring an instance caused an error.
Original file line number Diff line number Diff line change 2
2
"name" : " Rapid7 InsightIDR" ,
3
3
"description" : " Rapid7 InsightIDR is a Cloud-Based SIEM that detect and respond to security incidents." ,
4
4
"support" : " xsoar" ,
5
- "currentVersion" : " 2.0.0 " ,
5
+ "currentVersion" : " 2.0.1 " ,
6
6
"author" : " Cortex XSOAR" ,
7
7
"url" : " https://www.paloaltonetworks.com/cortex" ,
8
8
"email" : " " ,
You can’t perform that action at this time.
0 commit comments