From: Zack Cerza Date: Mon, 7 Oct 2013 15:00:03 +0000 (-0500) Subject: Reflect paddles API change: jobs in jobs/ X-Git-Tag: 1.1.0~1834^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=1c32b1b8866e19e36cf7485e9b4e923a84b39a49;p=teuthology.git Reflect paddles API change: jobs in jobs/ Signed-off-by: Zack Cerza --- diff --git a/teuthology/report.py b/teuthology/report.py index 5e02a3a473..afecfd1a7f 100755 --- a/teuthology/report.py +++ b/teuthology/report.py @@ -253,12 +253,12 @@ class ResultsReporter(object): """ Report a single job to the results server. - :param run_name: The name of the run. + :param run_name: The name of the run. The run must already exist. :param job_id: The job's id :param job_json: The job's JSON object. Optional - if not present, we look at the archive. """ - run_uri = "{base}/runs/{name}/".format( + run_uri = "{base}/runs/{name}/jobs/".format( base=self.base_uri, name=run_name,) if job_json is None: job_json = self.serializer.json_for_job(run_name, job_id)