From 9669edd35c16f7558144b5e226d72827a9c75208 Mon Sep 17 00:00:00 2001 From: Samuel Hassine Date: Wed, 18 Sep 2024 07:02:33 +0200 Subject: [PATCH] [client] Fix blocked connection timeout in send bundle function (#732) --- pycti/connector/opencti_connector_helper.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pycti/connector/opencti_connector_helper.py b/pycti/connector/opencti_connector_helper.py index ca0f4c5c..a76f95d0 100644 --- a/pycti/connector/opencti_connector_helper.py +++ b/pycti/connector/opencti_connector_helper.py @@ -1718,7 +1718,6 @@ def send_stix2_bundle(self, bundle: str, **kwargs) -> list: ) pika_parameters = pika.ConnectionParameters( heartbeat=10, - blocked_connection_timeout=10, host=self.connector_config["connection"]["host"], port=self.connector_config["connection"]["port"], virtual_host=self.connector_config["connection"]["vhost"],