From b1e66426c1efe2f7412a417eb3b728d5a8026e65 Mon Sep 17 00:00:00 2001 From: George Paraskevopoulos Date: Fri, 17 Feb 2017 14:58:01 +0200 Subject: Fix topology bugs - Fix getting the length of available topologies - Format a correct vnf parameter file Change-Id: I6c3534a67b44be6fcfb09d99856e5c27bcbd2ed1 Signed-off-by: George Paraskevopoulos --- sfc/lib/topology_shuffler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfc/lib/topology_shuffler.py') diff --git a/sfc/lib/topology_shuffler.py b/sfc/lib/topology_shuffler.py index ccabe427..bfa86420 100644 --- a/sfc/lib/topology_shuffler.py +++ b/sfc/lib/topology_shuffler.py @@ -60,7 +60,7 @@ def _get_seed(): NOTE: There's sure a smarter way to do this Probably with the Jenkins job id ''' - cutoff = len(TOPOLOGIES - 1) + cutoff = len(TOPOLOGIES) - 1 seed = datetime.datetime.today().weekday() if seed > cutoff: seed = random.randrange(cutoff) -- cgit 1.2.3-korg