We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 884410a commit f9af613Copy full SHA for f9af613
src/test/java/com/influxdb/v3/client/integration/E2ETest.java
@@ -43,6 +43,8 @@
43
import com.influxdb.v3.client.write.WriteOptions;
44
import com.influxdb.v3.client.write.WritePrecision;
45
46
+import static org.junit.jupiter.api.Assumptions.assumeFalse;
47
+
48
public class E2ETest {
49
50
private static final java.util.logging.Logger LOG = Logger.getLogger(E2ETest.class.getName());
@@ -62,6 +64,7 @@ void testQueryWithProxy() {
62
64
} catch (Exception e) {
63
65
if (e instanceof ConnectException && e.getMessage().contains("Connection refused")) {
66
LOG.warning("Tests with proxy have been skipped because no proxy is running on " + proxyUrl);
67
+ assumeFalse(e.getMessage().contains("Connection refused"));
68
return;
69
}
70
0 commit comments