Skip to content

Commit

Permalink
Sort view of queues in web.
Browse files Browse the repository at this point in the history
  • Loading branch information
kcrayon committed Mar 28, 2012
1 parent 92b437c commit af53da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resque/plugins/dynamic_queues/server.rb
Expand Up @@ -15,7 +15,7 @@ def self.registered(app)
view_data = {
'name' => k,
'value' => Array(v).join(", "),
'expanded' => Resque::Worker.new("@#{k}").queues.join(", ")
'expanded' => Resque::Worker.new("@#{k}").queues.sort.join(", ")
}
@queues << view_data
end
Expand Down

0 comments on commit af53da5

Please sign in to comment.