Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Remove excessive print statement #1126

Merged
merged 3 commits into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions services/sts/e2eTest/src/STSPresignerTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ package aws.sdk.kotlin.services.sts
import aws.sdk.kotlin.services.sts.model.GetCallerIdentityRequest
import aws.sdk.kotlin.services.sts.presigners.presignGetCallerIdentity
import aws.sdk.kotlin.testing.withAllEngines
import aws.smithy.kotlin.runtime.content.decodeToString
import aws.smithy.kotlin.runtime.http.SdkHttpClient
import aws.smithy.kotlin.runtime.http.complete
import aws.smithy.kotlin.runtime.http.toByteStream
import kotlinx.coroutines.runBlocking
import org.junit.jupiter.api.TestInstance
import kotlin.test.Test
Expand All @@ -32,8 +30,6 @@ class StsPresignerTest {

withAllEngines { engine ->
val httpClient = SdkHttpClient(engine)

println("Calling ${presignedRequest.method} ${presignedRequest.url}, body = ${presignedRequest.body.toByteStream()?.decodeToString()} headers ${presignedRequest.headers.entries().map { (k, v) -> "$k: ${v.joinToString(", ")}}" }.joinToString("; ")}")
val call = httpClient.call(presignedRequest)
call.complete()

Expand Down
Loading