summaryrefslogtreecommitdiff
path: root/post.py
diff options
context:
space:
mode:
authorIlias Apalodimas <ilias.apalodimas@linaro.org>2018-01-09 11:35:56 +0200
committerIlias Apalodimas <ilias.apalodimas@linaro.org>2018-01-09 11:35:56 +0200
commit81cfe3ec1d9d8ac592be0db10df3bebf493d10f5 (patch)
tree976f8e9ce1b48b5f41c47616609f91698d8acf91 /post.py
parente0658ef029ab8c9edc8c31f85d92d2c48883f648 (diff)
post one job only
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'post.py')
-rwxr-xr-xpost.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/post.py b/post.py
index 5fbfc9a..0909794 100755
--- a/post.py
+++ b/post.py
@@ -43,8 +43,7 @@ def main():
user = get_cfg_value(configfile, 'auth', 'user')
token = get_cfg_value(configfile, 'auth', 'token')
host = get_cfg_value(configfile, 'auth', 'host')
- for count in range(0, 2):
- submit_yaml_job(job_yaml, user, token, host)
+ submit_yaml_job(job_yaml, user, token, host)
if __name__ == "__main__":