Skip to content

Commit 9617a25

Browse files
authored
Merge pull request #7 from tenable/fix/callback-cert
Updated callback post to not verify SSL
2 parents c5485be + 0a5e8d5 commit 9617a25

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tenint/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from .models.configuration import Configuration, Settings # noqa F401
33
from .connector import Connector # noqa F401
44

5-
__version__ = '0.9.2'
5+
__version__ = '0.9.3'

tenint/connector.py

+1
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ def cmd_run(
259259
callback_url,
260260
headers={'X-Job-ID': job_id},
261261
json=payload,
262+
verify=False,
262263
)
263264
logger.info(f'Called back to {callback_url=} with {job_id=} and {payload=}')
264265
else:

0 commit comments

Comments
 (0)