We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 426df18 commit 96be44eCopy full SHA for 96be44e
TA-opencti-add-on/bin/ta_opencti_add_on/app_connector_helper.py
@@ -81,6 +81,10 @@ def register(self):
81
raise Exception(f"An exception occurred while registering Splunk App, "
82
f"received status code: {r.status_code}, exception: {r.content}")
83
84
+ if "errors" in r.json():
85
+ raise Exception(f"An exception occurred while registering Splunk App, "
86
+ f"received status code: {r.status_code}, exception: {r.json()}")
87
+
88
def send_stix_bundle(self, bundle):
89
"""
90
:param bundle:
0 commit comments