Skip to content

Commit

Permalink
fix: resolved wrong generation of response payload for client invocai…
Browse files Browse the repository at this point in the history
…tons
  • Loading branch information
andrea-deri committed Nov 26, 2024
1 parent 257c02e commit c46954d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.UUID;
import java.util.function.Predicate;
import java.util.stream.Collectors;
Expand Down Expand Up @@ -367,7 +366,7 @@ private void generateRe(
.uri(request.getURI().toString())
.method(request.getMethod())
.headers(request.getHeaders())
.payload(Arrays.toString(body))
.payload(new String(body))
.build();
}
ReResponseContext responseContext = null;
Expand Down

0 comments on commit c46954d

Please sign in to comment.