fix: Handling issues when the otx api is queried too often in a short time

pull/342/head
chrisr3d 2019-10-17 12:46:29 +02:00
parent 0555cdaedf
commit 60ef1901e2
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 5 additions and 1 deletions

View File

@ -118,7 +118,11 @@ class TestExpansions(unittest.TestCase):
for query_type, query_value, result in zip(query_types, query_values, results):
query = {"module": "otx", query_type: query_value, "config": {"apikey": "1"}}
response = self.misp_modules_post(query)
self.assertTrue(self.get_values(response), [result])
try:
self.assertTrue(self.get_values(response), [result])
except KeyError:
# Empty results, which in this case comes from a connection error
continue
def test_rbl(self):
query = {"module": "rbl", "ip-src": "8.8.8.8"}