Skip to content

Commit

Permalink
Update sra codegen expected test files with upstream changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gosar committed Oct 9, 2023
1 parent 2987594 commit d2a0473
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ public CompletableFuture<GetOperationWithChecksumResponse> getOperationWithCheck
apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service");
apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "GetOperationWithChecksum");
JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false)
.isPayloadJson(true).build();
.isPayloadJson(false).build();

HttpResponseHandler<GetOperationWithChecksumResponse> responseHandler = protocolFactory.createResponseHandler(
operationMetadata, GetOperationWithChecksumResponse::builder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public GetOperationWithChecksumResponse getOperationWithChecksum(
GetOperationWithChecksumRequest getOperationWithChecksumRequest) throws AwsServiceException, SdkClientException,
JsonException {
JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false)
.isPayloadJson(true).build();
.isPayloadJson(false).build();

HttpResponseHandler<GetOperationWithChecksumResponse> responseHandler = protocolFactory.createResponseHandler(
operationMetadata, GetOperationWithChecksumResponse::builder);
Expand Down

0 comments on commit d2a0473

Please sign in to comment.