On Wed, 16 Mar 2016 21:55:09 +0000
Jason Kölker <[email protected]> wrote:

> Previous patch referred to the wrong config names
> 
> Signed-off-by: Jason Kölker <[email protected]>
> ---
>  ryu/services/protocols/ovsdb/manager.py | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

This is the patch that should be merged, right?

> diff --git a/ryu/services/protocols/ovsdb/manager.py 
> b/ryu/services/protocols/ovsdb/manager.py
> index b828eb7..0c63197 100644
> --- a/ryu/services/protocols/ovsdb/manager.py
> +++ b/ryu/services/protocols/ovsdb/manager.py
> @@ -51,8 +51,8 @@ class OVSDB(app_manager.RyuApp):
>          self._address = self.CONF.ovsdb.address
>          self._port = self.CONF.ovsdb.port
>          self._probe_interval = self.CONF.ovsdb.probe_interval
> -        self._min_backoff = self.CONF.ovsdb._min_backoff
> -        self._max_backoff = self.CONF.ovsdb._max_backoff
> +        self._min_backoff = self.CONF.ovsdb.min_backoff
> +        self._max_backoff = self.CONF.ovsdb.max_backoff
>          self._clients = {}
>  
>      def _accept(self, server):
> @@ -102,7 +102,7 @@ class OVSDB(app_manager.RyuApp):
>          app = client.RemoteOvsdb.factory(sock, client_address,
>                                           probe_interval=self._probe_interval,
>                                           min_backoff=self._min_backoff,
> -                                         max_backoff=self._max_min_backoff)
> +                                         max_backoff=self._max_backoff)
>  
>          if app:
>              self._clients[app.name] = app
> -- 
> 2.7.2
> 
> 
> ------------------------------------------------------------------------------
> Transform Data into Opportunity.
> Accelerate data analysis in your applications with
> Intel Data Analytics Acceleration Library.
> Click to learn more.
> http://pubads.g.doubleclick.net/gampad/clk?id=278785231&iu=/4140
> _______________________________________________
> Ryu-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/ryu-devel

------------------------------------------------------------------------------
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785231&iu=/4140
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to