Don't offline proposal when jobs run on it

The new propose-devstack-plugin-list job runs on the proposal slave but
doesn't match the regex for reusable nodes. Update the regex so that
this job does not offline the slave.

Change-Id: Ib86875492adb959456d7db1b6866f968365f3df4
This commit is contained in:
Clark Boylan 2016-02-12 11:31:49 -08:00
parent a83b556123
commit a5731c14b9

View File

@ -45,7 +45,7 @@ def set_node_options(item, job, params):
# Default to single use node. Potentially overriden below.
# Select node to run job on.
params['OFFLINE_NODE_WHEN_COMPLETE'] = '1'
proposal_re = r'^.*(merge-release-tags|(propose|upstream)-(.*?)-(constraints-.*|updates?|update-liberty))$' # noqa
proposal_re = r'^.*(merge-release-tags|(propose|upstream)-(.*?)-(constraints-.*|updates?|update-liberty|plugins-list))$' # noqa
release_re = r'^.*-(forge|jenkinsci|mavencentral|pypi-(both|wheel)|npm)-upload$'
hook_re = r'^hook-(.*?)-(rtfd)$'
wheel_re = r'^wheel-(build|release)-.*$'