63 lines
2.5 KiB
Diff
63 lines
2.5 KiB
Diff
From c0c27707f886ddbf8bc853bf8f798278b1bb713d Mon Sep 17 00:00:00 2001
|
|
From: Kevin Wolf <kwolf@redhat.com>
|
|
Date: Tue, 26 Jun 2018 09:48:53 +0200
|
|
Subject: [PATCH 145/268] jobs: fix stale wording
|
|
|
|
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
Message-id: <20180626094856.6924-71-kwolf@redhat.com>
|
|
Patchwork-id: 81107
|
|
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 70/73] jobs: fix stale wording
|
|
Bugzilla: 1513543
|
|
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
|
|
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
RH-Acked-by: Fam Zheng <famz@redhat.com>
|
|
|
|
From: John Snow <jsnow@redhat.com>
|
|
|
|
During the design for manual completion, we decided not to use the
|
|
"manual" property as a shorthand for both auto-dismiss and auto-finalize.
|
|
|
|
Fix the wording.
|
|
|
|
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
Reviewed-by: Jeff Cody <jcody@redhat.com>
|
|
Reviewed-by: Markus Armbruster <armbru@redhat.com>
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
(cherry picked from commit c5b09f3f2c4db32f39ecbde2cf2f78e7a657a85d)
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
---
|
|
qapi/job.json | 11 ++++++-----
|
|
1 file changed, 6 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/qapi/job.json b/qapi/job.json
|
|
index 17d1003..2264435 100644
|
|
--- a/qapi/job.json
|
|
+++ b/qapi/job.json
|
|
@@ -50,16 +50,17 @@
|
|
# the last job in a transaction.
|
|
#
|
|
# @pending: The job has finished its work, but has finalization steps that it
|
|
-# needs to make prior to completing. These changes may require
|
|
-# manual intervention by the management process if manual was set
|
|
-# to true. These changes may still fail.
|
|
+# needs to make prior to completing. These changes will require
|
|
+# manual intervention via @job-finalize if auto-finalize was set to
|
|
+# false. These pending changes may still fail.
|
|
#
|
|
# @aborting: The job is in the process of being aborted, and will finish with
|
|
# an error. The job will afterwards report that it is @concluded.
|
|
# This status may not be visible to the management process.
|
|
#
|
|
-# @concluded: The job has finished all work. If manual was set to true, the job
|
|
-# will remain in the query list until it is dismissed.
|
|
+# @concluded: The job has finished all work. If auto-dismiss was set to false,
|
|
+# the job will remain in the query list until it is dismissed via
|
|
+# @job-dismiss.
|
|
#
|
|
# @null: The job is in the process of being dismantled. This state should not
|
|
# ever be visible externally.
|
|
--
|
|
1.8.3.1
|
|
|