Re: [ovs-dev] [PATCH] ovsdb-tool.at: Drop monitor argument

2018-04-16 Thread Alin Gabriel Serdean


> On 16 Apr 2018, at 23:41, Ben Pfaff  wrote:
> 
> On Mon, Apr 16, 2018 at 11:26:37PM +0300, Alin Gabriel Serdean wrote:
>> This patch drops the '--monitor' argument when running the ovsdb-server.
>> 
>> This can potentially increase the bug detection since the process will not
>> be restarted in certain situations.
>> 
>> Also, fixes the test under Windows since daemons do not have '--monitor'
>> argument.
>> 
>> Signed-off-by: Alin Gabriel Serdean 
> 
> Thanks!
> 
> Acked-by: Ben Pfaff 

Thanks for the quick review! I added a Suggested-by/at and applied on master.
___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


Re: [ovs-dev] [PATCH] ovsdb-tool.at: Drop monitor argument

2018-04-16 Thread Ben Pfaff
On Mon, Apr 16, 2018 at 11:26:37PM +0300, Alin Gabriel Serdean wrote:
> This patch drops the '--monitor' argument when running the ovsdb-server.
> 
> This can potentially increase the bug detection since the process will not
> be restarted in certain situations.
> 
> Also, fixes the test under Windows since daemons do not have '--monitor'
> argument.
> 
> Signed-off-by: Alin Gabriel Serdean 

Thanks!

Acked-by: Ben Pfaff 
___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


[ovs-dev] [PATCH] ovsdb-tool.at: Drop monitor argument

2018-04-16 Thread Alin Gabriel Serdean
This patch drops the '--monitor' argument when running the ovsdb-server.

This can potentially increase the bug detection since the process will not
be restarted in certain situations.

Also, fixes the test under Windows since daemons do not have '--monitor'
argument.

Signed-off-by: Alin Gabriel Serdean 
---
 tests/ovsdb-tool.at | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/ovsdb-tool.at b/tests/ovsdb-tool.at
index ab766be24..a27a239ea 100644
--- a/tests/ovsdb-tool.at
+++ b/tests/ovsdb-tool.at
@@ -443,7 +443,7 @@ AT_CHECK(
 ]], [ignore])
 
 # Dump the data.
-AT_CHECK([ovsdb-server -vfile -vvlog:off --monitor --detach --no-chdir 
--pidfile --log-file --remote=punix:db.sock db1])
+AT_CHECK([ovsdb-server -vfile -vvlog:off --detach --no-chdir --pidfile 
--log-file --remote=punix:db.sock db1])
 AT_CHECK([ovsdb-client dump > expout])
 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
 
@@ -451,7 +451,7 @@ OVS_APP_EXIT_AND_WAIT([ovsdb-server])
 ovsdb-tool create-cluster db2 db1 unix:s1.raft
 
 # Dump the data.
-AT_CHECK([ovsdb-server -vconsole:off -vfile -vvlog:off --monitor --detach 
--no-chdir --pidfile --log-file --remote=punix:db.sock db2])
+AT_CHECK([ovsdb-server -vconsole:off -vfile -vvlog:off --detach --no-chdir 
--pidfile --log-file --remote=punix:db.sock db2])
 AT_CHECK([ovsdb-client wait ordinals connected])
 AT_CHECK([ovsdb-client dump > dump2])
 OVS_APP_EXIT_AND_WAIT([ovsdb-server])
-- 
2.16.1.windows.1

___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev