Skip to content

Commit 6dbf01d

Browse files
authored
NGINXApiModule: fix logging typo (demisto#24878)
* fix logging typo * bump dependent packs --------- Co-authored-by: glicht <[email protected]>
1 parent bf44608 commit 6dbf01d

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

Packs/ApiModules/Scripts/NGINXApiModule/NGINXApiModule.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def test_nginx_server(port: int, params: Dict):
244244
nginx_process.terminate()
245245
nginx_process.wait(1.0)
246246
except Exception as ex:
247-
demisto.error(f'failed stoping test nginx process: {ex}')
247+
demisto.error(f'failed stopping test nginx process: {ex}')
248248

249249

250250
def try_parse_integer(int_to_parse: Any, err_msg: str) -> int:
@@ -314,7 +314,7 @@ def run_long_running(params: Dict = None, is_test: bool = False):
314314
server_process.terminate()
315315
server_process.join(1.0)
316316
except Exception as ex:
317-
demisto.error(f'failed stoping test wsgi server process: {ex}')
317+
demisto.error(f'failed stopping test wsgi server process: {ex}')
318318

319319
else:
320320
nginx_process = start_nginx_server(nginx_port, params)

Packs/EDL/ReleaseNotes/3_1_19.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#### Integrations
2+
##### Generic Export Indicators Service
3+
- Logging improvements.

Packs/EDL/pack_metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Generic Export Indicators Service",
33
"description": "Use this pack to generate a list based on your Threat Intel Library, and export it to ANY other product in your network, such as your firewall, agent or SIEM. This pack is built for ongoing distribution of indicators from XSOAR to other products in the network, by creating an endpoint with a list of indicators that can be pulled by external vendors.",
44
"support": "xsoar",
5-
"currentVersion": "3.1.18",
5+
"currentVersion": "3.1.19",
66
"author": "Cortex XSOAR",
77
"url": "https://www.paloaltonetworks.com/cortex",
88
"email": "",
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#### Integrations
2+
##### TAXII2 Server
3+
- Logging improvements.

Packs/TAXIIServer/pack_metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "TAXII Server",
33
"description": "This pack provides TAXII Services for system indicators (Outbound feed).",
44
"support": "xsoar",
5-
"currentVersion": "2.0.26",
5+
"currentVersion": "2.0.27",
66
"author": "Cortex XSOAR",
77
"url": "https://www.paloaltonetworks.com/cortex",
88
"email": "",

0 commit comments

Comments
 (0)