We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee828ea + 2c7d8af commit de3b0e8Copy full SHA for de3b0e8
core/pva/src/test/java/org/epics/pva/combined/ServerClientTest.java
@@ -79,7 +79,12 @@ public class ServerClientTest {
79
80
private static PVAServer testServer() {
81
if (!PVASettings.EPICS_PVA_ENABLE_IPV6)
82
- PVASettings.EPICS_PVAS_INTF_ADDR_LIST = "0.0.0.0";
+ {
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
+ }
88
try {
89
return new PVAServer();
90
} catch (Exception e) {
0 commit comments