Skip to content

Commit

Permalink
fix the sorting of the try
Browse files Browse the repository at this point in the history
  • Loading branch information
epugh committed Dec 10, 2024
1 parent 7e433a8 commit 0f68a02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/enqueue_nightly_query_runner_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class EnqueueNightlyQueryRunnerJob < ApplicationJob

def perform(*args)
Case.all.nightly_run.each do |kase|
try = kase.tries.last
try = kase.tries.first # new to old ;-)
QueryRunnerJob.perform_later kase, try
end
end
Expand Down

0 comments on commit 0f68a02

Please sign in to comment.