aboutsummaryrefslogtreecommitdiff
path: root/tests/test-reconnect.py
AgeCommit message (Collapse)Author
2011-09-27python: Upgrade to vlog.Ethan Jackson
This patch upgrades the library code in the python/ovs directory to the new vlog module.
2011-09-24python: Style cleanup.Ethan Jackson
This patch does minor style cleanups to the code in the python and tests directory. There's other code floating around that could use similar treatment, but updating it is not convenient at the moment.
2011-09-24test-reconnect: Fix use of undefined symbol.Ethan Jackson
2011-03-14ovsdb-server: Report time since last connect and disconnect for each manager.Andrew Evans
Only the time connected (if connected) or disconnected (if disconnected) is currently reported for each manager. Change to reporting both in seconds since the last connect and disconnect events respectively. An empty value indicates no previous connection or disconnection. This can help diagnose certain connectivity problems, e.g. flapping. Requested-by: Peter Balland <peter@nicira.com> Bug #4833.
2011-03-09reconnect: Track last-disconnected time.Andrew Evans
Commit a4613b01ab (ovsdb: Change the way connection duration time is reported in Manager table.), pushed earlier today, requires this commit, so OVSDB has been unbuildable from then to now.
2010-08-25Implement initial Python bindings for Open vSwitch database.Ben Pfaff
These initial bindings pass a few hundred of the corresponding tests for C implementations of various bits of the Open vSwitch library API. The poorest part of them is actually the Python IDL interface in ovs.db.idl, which has not received enough attention yet. It appears to work, but it doesn't yet support writes (transactions) and it is difficult to use. I hope to improve it as it becomes clear what semantics Python applications actually want from an IDL.