diff --git a/freezerclient/v1/managers/jobs.py b/freezerclient/v1/managers/jobs.py index 50d3b3b..3038785 100644 --- a/freezerclient/v1/managers/jobs.py +++ b/freezerclient/v1/managers/jobs.py @@ -92,7 +92,7 @@ class JobManager(object): :param job_id: the id of the job to start :return: the response obj: { - result: string 'success' or 'already started' + result: string 'success' or 'start already requested' } """ # endpoint /v1/jobs/{job_id}/event @@ -113,7 +113,7 @@ class JobManager(object): :param job_id: the id of the job to start :return: the response obj: { - result: string 'success' or 'already stopped' + result: string 'success' or 'stop already requested' } """ # endpoint /v1/jobs/{job_id}/event @@ -134,7 +134,7 @@ class JobManager(object): :param job_id: the id of the job to start :return: the response obj: { - result: string 'success' or 'already stopped' + result: string 'success' or 'abort already requested' } """ # endpoint /v1/jobs/{job_id}/event diff --git a/freezerclient/v2/managers/jobs.py b/freezerclient/v2/managers/jobs.py index e798c2d..eae3111 100644 --- a/freezerclient/v2/managers/jobs.py +++ b/freezerclient/v2/managers/jobs.py @@ -93,7 +93,7 @@ class JobManager(object): :param job_id: the id of the job to start :return: the response obj: { - result: string 'success' or 'already started' + result: string 'success' or 'start already requested' } """ # endpoint /v2/jobs/{job_id}/event @@ -114,7 +114,7 @@ class JobManager(object): :param job_id: the id of the job to start :return: the response obj: { - result: string 'success' or 'already stopped' + result: string 'success' or 'stop already requested' } """ # endpoint /v2/jobs/{job_id}/event @@ -135,7 +135,7 @@ class JobManager(object): :param job_id: the id of the job to start :return: the response obj: { - result: string 'success' or 'already stopped' + result: string 'success' or 'abort already requested' } """ # endpoint /v2/jobs/{job_id}/event