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
OpenAPI module:
Opening api/v1/{integration}/swagger.json results in Internal Server Error when Integration has a model with a selection field that has no options defined.
Cause: controllers/pinguin.py
list index out of range exception at if isinstance(meta["selection"][0][0], int).
Possible fix:
Add a check if the meta["selection"] is not empty.
The text was updated successfully, but these errors were encountered:
OpenAPI module:
Opening
api/v1/{integration}/swagger.json
results in Internal Server Error when Integration has a model with a selection field that has no options defined.Cause:
controllers/pinguin.py
list index out of range exception at
if isinstance(meta["selection"][0][0], int)
.Possible fix:
Add a check if the
meta["selection"]
is not empty.The text was updated successfully, but these errors were encountered: