Skip to content

Commit

Permalink
skip: Protocol family unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v committed Feb 13, 2022
1 parent d8ee0f8 commit 9ac9fd8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@
import org.apache.http.impl.nio.client.HttpAsyncClients;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignored;

import java.io.IOException;
import java.util.concurrent.CompletableFuture;

@Ignored("Protocol family unavailable with k8s pods")
public class ApacheHttpAsyncClientInstrumentationTest extends AbstractHttpClientInstrumentationTest {

private static CloseableHttpAsyncClient client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@
import org.apache.http.impl.client.HttpClients;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignored;

import java.io.IOException;

@Ignored("Protocol family unavailable with k8s pods")
public class ApacheHttpClientInstrumentationTest extends AbstractHttpClientInstrumentationTest {

private static CloseableHttpClient client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
import org.apache.http.impl.client.DefaultHttpClient;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignored;

@Ignored("Protocol family unavailable with k8s pods")
public class LegacyApacheHttpClientInstrumentationTest extends AbstractHttpClientInstrumentationTest {

@SuppressWarnings("deprecation")
Expand Down

0 comments on commit 9ac9fd8

Please sign in to comment.