Turn shm-monitor off by default

resolves #459
This commit is contained in:
Alexey Rybalchenko
2023-02-24 11:49:57 +01:00
parent 526d9e2b49
commit b93cbf7d59
24 changed files with 66 additions and 4 deletions

View File

@@ -38,6 +38,7 @@ auto RunPoller(string transport, int pollType) -> void
<< " --id pollout_"<< transport
<< " --control static"
<< " --color false"
<< " --shm-monitor true"
<< " --session " << session
<< " --channel-config name=data1,type=push,method=bind,address=" << data1Address
<< " name=data2,type=push,method=bind,address=" << data2Address;
@@ -51,6 +52,7 @@ auto RunPoller(string transport, int pollType) -> void
<< " --id pollin_" << transport
<< " --control static"
<< " --color false"
<< " --shm-monitor true"
<< " --session " << session
<< " --poll-type " << pollType
<< " --channel-config name=data1,type=pull,method=connect,address=" << data1Address