Merge "Add noop job to config validator"

This commit is contained in:
Jenkins 2014-03-21 18:41:51 +00:00 committed by Gerrit Code Review
commit dfdc5976c6
1 changed files with 1 additions and 0 deletions

View File

@ -137,6 +137,7 @@ class Server(object):
if not os.path.exists(path):
raise Exception("Unable to find job list: %s" % path)
jobs = set()
jobs.add('noop')
for line in open(path):
v = line.strip()
if v: