You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if self.request_error_details:
for external_task in external_tasks:
if external_task.error_details is None:
try:
response = requests.get(self.url + f'/{external_task.id_}/errorDetails')
except requests.exceptions.RequestException:
raise pycamunda.PyCamundaException()
if not response:
pycamunda.base._raise_for_status(response)
external_task.error_details = response.text
pycamunda/externaltask.py
replace:
with
The text was updated successfully, but these errors were encountered: