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
In the DataplanePublicApiV2Controler, if the CompletableFuture handled by the processRequest method has a result with multiple failure messages, these messages will all be concatenated into a single string, even though the TransferErrorResponse handles a list of errors.
Expected Behavior
Since the end result to the client is a list of errors, it would be expected that response includes an actual list of errors and not a concatenated string of errors.
Observed Behavior
Here a Details list should be a single error, but all are concatenated.
The text was updated successfully, but these errors were encountered:
I think this is a good first issue. Can label it anymore since I've lost my contributor status :(
rafaelmag110
changed the title
DataplanePublicApiControler completable future failure is processed as contatenated string
DataplanePublicApiControler completable future failure messages are returned as contatenated string
Dec 12, 2024
Bug Report
Describe the Bug
In the
DataplanePublicApiV2Controler
, if theCompletableFuture
handled by theprocessRequest
method has a result with multiple failure messages, these messages will all be concatenated into a single string, even though theTransferErrorResponse
handles a list of errors.Expected Behavior
Since the end result to the client is a list of errors, it would be expected that response includes an actual list of errors and not a concatenated string of errors.
Observed Behavior
Here a Details list should be a single error, but all are concatenated.
The text was updated successfully, but these errors were encountered: