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

pull/342/head
chrisr3d 4 years ago
parent 0555cdaedf
commit 60ef1901e2
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
  1. 6
      tests/test_expansions.py

@ -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"}

Loading…
Cancel
Save