Skip to content

Commit

Permalink
Merge pull request ManageIQ#16864 from jrafanie/run_authentication_ch…
Browse files Browse the repository at this point in the history
…ecks_at_max_priority

Many things rely on authentications, check it first
  • Loading branch information
gtanzillo authored Jan 23, 2018
2 parents 20c5a84 + cec452e commit 9915f79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models/miq_schedule_worker/jobs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ def retirement_check
end

def host_authentication_check_schedule
queue_work_on_each_zone(:class_name => "Host", :method_name => "authentication_check_schedule")
queue_work_on_each_zone(:class_name => "Host", :method_name => "authentication_check_schedule", :priority => MiqQueue::HIGH_PRIORITY)
end

def ems_authentication_check_schedule
queue_work_on_each_zone(:class_name => "ExtManagementSystem", :method_name => "authentication_check_schedule")
queue_work_on_each_zone(:class_name => "ExtManagementSystem", :method_name => "authentication_check_schedule", :priority => MiqQueue::HIGH_PRIORITY)
end

def session_check_session_timeout
Expand Down

0 comments on commit 9915f79

Please sign in to comment.