diff options
author | Orhan Toy <toyorhan@gmail.com> | 2018-10-11 13:29:34 +0200 |
---|---|---|
committer | Orhan Toy <toyorhan@gmail.com> | 2018-10-11 13:29:34 +0200 |
commit | 6865f73b9124eb7c89320f31bd893648a7819653 (patch) | |
tree | 839c9479b3279a41583faff191fb44440521980a /activejob | |
parent | 6a278c6e9a05b0d901e482458cfc2e3df587d522 (diff) | |
download | rails-6865f73b9124eb7c89320f31bd893648a7819653.tar.gz rails-6865f73b9124eb7c89320f31bd893648a7819653.tar.bz2 rails-6865f73b9124eb7c89320f31bd893648a7819653.zip |
[ci skip] Fix link to Concurrent::ThreadPoolExecutor docs
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/lib/active_job/queue_adapters/async_adapter.rb | 2 |
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 |