We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bd085a commit 0f14802Copy full SHA for 0f14802
1 file changed
app/services/benchmark_pool.rb
@@ -9,6 +9,8 @@ def self.enqueue(initiator_type, initiator, repo_name, options = {})
9
RemoteServerJob.perform_later(initiator, "sequel_#{initiator_type}", options)
10
when 'ruby-pg'
11
RemoteServerJob.perform_later(initiator, "pg_#{initiator_type}", options)
12
+ when 'bundler'
13
+ RemoteServerJob.perform_later(initiator, "bundler_#{initiator_type}", options)
14
else
15
raise ArgumentError, "unknown repo: #{repo_name}"
16
end
0 commit comments