Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsessanchez committed Nov 10, 2023
1 parent cbe580b commit d705c5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.0.0] - 2023-11-10
## [0.9.0] - 2023-11-10

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,7 @@ private Response getHttpResponseMessage(@Nonnull final RequestInformation reques
additionalContext.put(claimsKey, claims);
}
this.authProvider.authenticateRequest(requestInfo, additionalContext);
this.client.newCall(getRequestFromRequestInformation(requestInfo, span, spanForAttributes));
Response response = this.client.newCall(getRequestFromRequestInformation(requestInfo, span, spanForAttributes)).execute();
final Response response = this.client.newCall(getRequestFromRequestInformation(requestInfo, span, spanForAttributes)).execute();
final String contentLengthHeaderValue = getHeaderValue(response, "Content-Length");
if(contentLengthHeaderValue != null && !contentLengthHeaderValue.isEmpty()) {
final int contentLengthHeaderValueAsInt = Integer.parseInt(contentLengthHeaderValue);
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ org.gradle.parallel=true
org.gradle.caching=true

mavenGroupId = com.microsoft.kiota
mavenMajorVersion = 1
mavenMinorVersion = 0
mavenMajorVersion = 0
mavenMinorVersion = 9
mavenPatchVersion = 0
mavenArtifactSuffix =

Expand Down

0 comments on commit d705c5a

Please sign in to comment.