From 7f83d7995d1b19274b64aabc383c1cee68f33f17 Mon Sep 17 00:00:00 2001 From: "Yuanbin.Chen" Date: Thu, 8 Feb 2018 09:58:46 +0800 Subject: [PATCH] Fix lb policy for 1.1 version support In setup.cfg has support senlin.policy.loadbalance-1.1, but policy type list not display 1.1 version. Change-Id: I92fac080c7bc61e52df2ec6629384e36ae2bacdf Signed-off-by: Yuanbin.Chen --- senlin/policies/lb_policy.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/senlin/policies/lb_policy.py b/senlin/policies/lb_policy.py index e842be677..326365c03 100755 --- a/senlin/policies/lb_policy.py +++ b/senlin/policies/lb_policy.py @@ -46,7 +46,10 @@ class LoadBalancingPolicy(base.Policy): VERSIONS = { '1.0': [ {'status': consts.SUPPORTED, 'since': '2016.04'} - ] + ], + '1.1': [ + {'status': consts.SUPPORTED, 'since': '2018.01'} + ], } PRIORITY = 500