Skip to content

Commit

Permalink
chore: fixes formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Dec 18, 2024
1 parent d38411a commit 6fe9258
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -729,8 +729,7 @@ private Response getHttpResponseMessage(
}
spanForAttributes.setAttribute(HTTP_RESPONSE_STATUS_CODE, response.code());
spanForAttributes.setAttribute(
NETWORK_PROTOCOL_NAME,
response.protocol().toString().toUpperCase(Locale.ROOT));
NETWORK_PROTOCOL_NAME, response.protocol().toString().toUpperCase(Locale.ROOT));
return this.retryCAEResponseIfRequired(
response, requestInfo, span, spanForAttributes, claims);
} catch (IOException | URISyntaxException ex) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.microsoft.kiota.http.middleware;

import static com.microsoft.kiota.http.TelemetrySemanticConventions.*;

import com.microsoft.kiota.http.middleware.options.IShouldRetry;
import com.microsoft.kiota.http.middleware.options.RetryHandlerOption;

Expand All @@ -15,8 +17,6 @@
import okhttp3.Response;
import okhttp3.ResponseBody;

import static com.microsoft.kiota.http.TelemetrySemanticConventions.*;

import java.io.IOException;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
Expand Down

0 comments on commit 6fe9258

Please sign in to comment.