Skip to content

Commit 3f623d0

Browse files
authored
Merge branch 'ControlSystemStudio:master' into master
2 parents 7276f94 + de3b0e8 commit 3f623d0

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)