You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2019/11/02 10:02:45 UTC

[jmeter] 02/02: Add header

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit bcc6e9be98091bdfd680c22e18ada7b9162bd63e
Author: Sebb <se...@apache.org>
AuthorDate: Sat Nov 2 10:02:30 2019 +0000

    Add header
---
 .../java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java     | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java b/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java
index 98e1b7b..5dcc618 100644
--- a/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java
+++ b/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java
@@ -45,6 +45,7 @@ public class DnsManagerTest {
         // By default it uses 3 retries (see org.xbill.DNS.ExtendedResolver#setRetries)
         dns.setTimeoutMs(2000);
         try { // Temporary test: what do other hosts generate?
+            System.out.println("Testing localhost");
             java.net.InetAddress ina[];
             ina = dns.resolve("localhost");
             System.out.println(java.util.Arrays.toString(ina));