Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ServerClientTest.java #3230

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ public class ServerClientTest {

private static PVAServer testServer() {
if (!PVASettings.EPICS_PVA_ENABLE_IPV6)
PVASettings.EPICS_PVAS_INTF_ADDR_LIST = "0.0.0.0";
{
// Details vary with network setup,
// but forcing use of IPv4 localhost is quite likely to "work"
PVASettings.EPICS_PVAS_INTF_ADDR_LIST = "127.0.0.1";
PVASettings.EPICS_PVA_ADDR_LIST = "127.0.0.1";
}
try {
return new PVAServer();
} catch (Exception e) {
Expand Down
Loading