aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2018-10-11 13:44:18 +0200
committerGitHub <noreply@github.com>2018-10-11 13:44:18 +0200
commit81bbcea6cd0c0095614c2c4af3a01d692dcc7a64 (patch)
tree839c9479b3279a41583faff191fb44440521980a
parent6a278c6e9a05b0d901e482458cfc2e3df587d522 (diff)
parent6865f73b9124eb7c89320f31bd893648a7819653 (diff)
downloadrails-81bbcea6cd0c0095614c2c4af3a01d692dcc7a64.tar.gz
rails-81bbcea6cd0c0095614c2c4af3a01d692dcc7a64.tar.bz2
rails-81bbcea6cd0c0095614c2c4af3a01d692dcc7a64.zip
Merge pull request #34189 from orhantoy/fix-link-to-concurrent-ruby-docs
[ci skip] Fix link to Concurrent::ThreadPoolExecutor docs
-rw-r--r--activejob/lib/active_job/queue_adapters/async_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/queue_adapters/async_adapter.rb b/activejob/lib/active_job/queue_adapters/async_adapter.rb
index ebf6f384e3..53a7e3d53e 100644
--- a/activejob/lib/active_job/queue_adapters/async_adapter.rb
+++ b/activejob/lib/active_job/queue_adapters/async_adapter.rb
@@ -31,7 +31,7 @@ module ActiveJob
# jobs. Since jobs share a single thread pool, long-running jobs will block
# short-lived jobs. Fine for dev/test; bad for production.
class AsyncAdapter
- # See {Concurrent::ThreadPoolExecutor}[https://ruby-concurrency.github.io/concurrent-ruby/Concurrent/ThreadPoolExecutor.html] for executor options.
+ # See {Concurrent::ThreadPoolExecutor}[https://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/ThreadPoolExecutor.html] for executor options.
def initialize(**executor_options)
@scheduler = Scheduler.new(**executor_options)
end