diff options
author | Jason Kölker <jason@koelker.net> | 2016-03-23 17:33:32 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-03-24 05:17:48 +0900 |
commit | 2de65ac1ad03364a37e6da647eaf3c5083a16547 (patch) | |
tree | f727bb3f8bc3d71ad1f0017697870559fb1e8170 | |
parent | e190549b76d713658327bc5add1738c54ceef3fa (diff) |
protocols/ovsdb: Update wrapped Idl()
Upstream ovs added the `Idl.readonly` property after ryu embeded ovs.
Add the property for compatability.
Signed-off-by: Jason Kölker <jason@koelker.net>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/services/protocols/ovsdb/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ryu/services/protocols/ovsdb/client.py b/ryu/services/protocols/ovsdb/client.py index 9b7917e4..68d6e9f3 100644 --- a/ryu/services/protocols/ovsdb/client.py +++ b/ryu/services/protocols/ovsdb/client.py @@ -146,6 +146,7 @@ class Idl(idl.Idl): self._events = [] self.tables = schema.tables + self.readonly = schema.readonly self._db = schema self._session = session self._monitor_request_id = None |