20472: Remove special handling of update_priority
authorPeter Amstutz <peter.amstutz@curii.com>
Thu, 4 May 2023 01:31:06 +0000 (21:31 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Thu, 4 May 2023 14:42:00 +0000 (10:42 -0400)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

services/api/app/controllers/arvados/v1/containers_controller.rb

index b7dc0302299227791451d0ea6e60198e93cf08b2..a66271f8c4cb7682c1399d740346ff1e8d4c7763 100644 (file)
@@ -34,11 +34,6 @@ class Arvados::V1::ContainersController < ApplicationController
       # Avoid loading more fields than we need
       @objects = @objects.select(:id, :uuid, :state, :priority, :auth_uuid, :locked_by_uuid, :lock_count)
       @select = %w(uuid state priority auth_uuid locked_by_uuid)
-    elsif action_name == 'update_priority'
-      # We're going to reload(lock: true) in the handler, which will
-      # select all attributes, but will fail if we don't select :id
-      # now.
-      @objects = @objects.select(:id, :uuid)
     end
   end