From 2de65ac1ad03364a37e6da647eaf3c5083a16547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jason=20K=C3=B6lker?= Date: Wed, 23 Mar 2016 17:33:32 +0000 Subject: [PATCH] protocols/ovsdb: Update wrapped Idl() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream ovs added the `Idl.readonly` property after ryu embeded ovs. Add the property for compatability. Signed-off-by: Jason Kölker Signed-off-by: FUJITA Tomonori --- ryu/services/protocols/ovsdb/client.py | 1 + 1 file changed, 1 insertion(+) 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