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
While testing flow triggering with multipart/form-data Content Type with Swagger UI, an options parameter is added by default. This caused the serialisation to break as options parameter is a nested structured object, that requires to be treated as such.
The text was updated successfully, but these errors were encountered:
The options parameter is passed from Swagger UI as a JSON object. According to the OpenAPI spec, application/json Content Type is supported as a field within a multipart/form-data request. However, the jetty library provided MultiPartContentProvider does not have an appropriate method for adding application/json content. We will open a request so that jetty can support such methods. This is preventing us from introducing a test case for this flow.
While testing flow triggering with
multipart/form-data
Content Type with Swagger UI, anoptions
parameter is added by default. This caused the serialisation to break asoptions
parameter is a nested structured object, that requires to be treated as such.The text was updated successfully, but these errors were encountered: