Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ public static void setup() throws Exception {
@AfterClass
public static void tearDown() {
client.close();
CrtResource.waitForNoResources();
}

private byte[] generateRandomBody(int size) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ public static void setup() throws Exception {
@AfterClass
public static void tearDown() {
client.close();
CrtResource.waitForNoResources();
}

private byte[] generateRandomBody(int size) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ public static void beforeAll() {
Log.initLoggingToStdout(Log.LogLevel.Warn);
}

@AfterAll
public static void afterAll() {
CrtResource.waitForNoResources();
}

/**
* default value of connectionAcquisitionTimeout of 10 will fail validatesHttpsCertificateIssuer() test
* */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ public static void setup() {

@AfterClass
public static void tearDown() {
// Verify there is no resource leak.
CrtResource.waitForNoResources();
executorService.shutdown();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ public static void beforeAll() {
Log.initLoggingToStdout(Log.LogLevel.Warn);
}

@AfterAll
public static void afterAll() {
CrtResource.waitForNoResources();
}

@Override
protected SdkAsyncHttpClient setupClient() {
return AwsCrtAsyncHttpClient.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ public void teardown() {
}
EventLoopGroup.closeStaticDefault();
HostResolver.closeStaticDefault();
CrtResource.waitForNoResources();
}

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@
import software.amazon.awssdk.http.crt.TcpKeepAliveConfiguration;

class AwsCrtConfigurationUtilsTest {

@AfterAll
public static void tearDown() {
CrtResource.waitForNoResources();
}

@ParameterizedTest
@MethodSource("cipherPreferences")
void resolveCipherPreference_pqNotSupported_shouldFallbackToSystemDefault(Boolean preferPqTls,
Expand Down
Loading