At the end of the NetFlow unit tests we warp time to force any
remaining flows to expire and then immediately kill OVS and the
collector. However, this creates a race where sometimes these
processes are killed before the last records are sent or collected.
It's possible to force OVS to go through the run loop one last time
before exiting but it's harder to enforce that the collector receives
the packet. This simply avoids the problem by adding a 1 second delay
before killing the processes, which should be more than enough time.
Signed-off-by: Jesse Gross <jesse@nicira.com>
ovs-appctl time/warp $delay
done
+sleep 1
OVS_VSWITCHD_STOP
ovs-appctl -t test-netflow exit
ovs-appctl time/warp 10000
+sleep 1
OVS_VSWITCHD_STOP
ovs-appctl -t test-netflow exit