Skip to content

Commit bece869

Browse files
committed
Merge branch 'master' into CSSTUDIO-2646
2 parents 6307d6b + de3b0e8 commit bece869

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

core/pva/src/test/java/org/epics/pva/combined/ServerClientTest.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,12 @@ public class ServerClientTest {
7979

8080
private static PVAServer testServer() {
8181
if (!PVASettings.EPICS_PVA_ENABLE_IPV6)
82-
PVASettings.EPICS_PVAS_INTF_ADDR_LIST = "0.0.0.0";
82+
{
83+
// Details vary with network setup,
84+
// but forcing use of IPv4 localhost is quite likely to "work"
85+
PVASettings.EPICS_PVAS_INTF_ADDR_LIST = "127.0.0.1";
86+
PVASettings.EPICS_PVA_ADDR_LIST = "127.0.0.1";
87+
}
8388
try {
8489
return new PVAServer();
8590
} catch (Exception e) {

0 commit comments

Comments
 (0)