rename localhost -> isolated

This commit is contained in:
Michael Davidsaver
2020-02-26 23:45:24 -08:00
parent 246d72624a
commit 96e5c44f73
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ struct Tester {
Tester()
:initial(nt::NTScalar{TypeCode::Int32}.create())
,mbox(server::SharedPV::buildReadonly())
,serv(server::Config::localhost()
,serv(server::Config::isolated()
.build()
.addPV("mailbox", mbox))
,cli(serv.clientConfig().build())
@@ -183,7 +183,7 @@ void testError(bool phase)
{
testShow()<<__func__<<" phase="<<phase;
auto serv = server::Config::localhost()
auto serv = server::Config::isolated()
.build()
.addSource("err", std::make_shared<ErrorSource>(phase))
.start();