20472: Remove special handling of update_priority
[arvados.git] / 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