From a5c4ac10f7a99ed6192cdf93f9eaec3d820b10b6 Mon Sep 17 00:00:00 2001 From: Changbin Liu Date: Sat, 31 Aug 2013 20:01:03 -0400 Subject: [PATCH] Remove restriction # of workers <= 5 Chef cookbooks and environment have been updated accordingly Change-Id: I00d5caf72e750b8904e1382fa5c844acbafb795c --- inception/orchestrator.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/inception/orchestrator.py b/inception/orchestrator.py index dc0ad25..c9359ca 100644 --- a/inception/orchestrator.py +++ b/inception/orchestrator.py @@ -173,9 +173,6 @@ class Orchestrator(object): For doc on each param refer to orchestrator_opts """ ## check args - #TODO(changbl): remove the restriction of "num_workers <= 5" - if num_workers > 5: - raise ValueError("currently only supports num_workers <= 5") if CONCAT_CHAR in prefix: raise ValueError('"%s" cannot exist in prefix=%r' % (CONCAT_CHAR, prefix))