Hi Guys This patch just adds the ability to parse Float values from a config using oslo.config.cfg FloatOpt class
Thanks A.J. Ragusa Software Engineer - Global Research Network Operations Center @ Indiana University Signed-off-by: AJ Ragusa <[email protected]> --- diff --git a/ryu/cfg.py b/ryu/cfg.py index 2495961..f2f05b4 100644 --- a/ryu/cfg.py +++ b/ryu/cfg.py @@ -43,6 +43,7 @@ from oslo.config.cfg import IntOpt from oslo.config.cfg import ListOpt from oslo.config.cfg import MultiStrOpt from oslo.config.cfg import StrOpt +from oslo.config.cfg import FloatOpt from oslo.config.cfg import RequiredOptError from oslo.config.cfg import ConfigFilesNotFoundError ------------------------------------------------------------------------------ Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
