X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d10a66b66edc088d33bad52aebd7cac0a6e9ce49..d13ad5bbb7f5e74cb43d0570d9d1a8159237f5ff:/services/api/app/models/job.rb?ds=sidebyside diff --git a/services/api/app/models/job.rb b/services/api/app/models/job.rb index 97039db9f1..9fc58a6806 100644 --- a/services/api/app/models/job.rb +++ b/services/api/app/models/job.rb @@ -28,7 +28,6 @@ class Job < ArvadosModel t.add :started_at t.add :finished_at t.add :output - t.add :output_is_persistent t.add :success t.add :running t.add :is_locked_by_uuid @@ -40,8 +39,6 @@ class Job < ArvadosModel t.add :repository t.add :supplied_script_version t.add :docker_image_locator - t.add :name - t.add :description end def assert_finished @@ -193,7 +190,7 @@ class Job < ArvadosModel if self.cancelled_at and not self.cancelled_at_was self.cancelled_at = Time.now self.cancelled_by_user_uuid = current_user.uuid - self.cancelled_by_client_uuid = current_api_client.uuid + self.cancelled_by_client_uuid = current_api_client.andand.uuid @need_crunch_dispatch_trigger = true else self.cancelled_at = self.cancelled_at_was