aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2017-08-19 08:23:37 +0900
committerYoshiyuki Hirano <yhirano@me.com>2017-08-19 08:23:37 +0900
commit948c2c48df04e775e5b5a3da5f54e0d61299dc54 (patch)
tree944a248ddb29898a5fc7ae676a8f76253afc0377 /activejob
parent99c604f1f9de2f2a6fc3d0aec4f274cb05b48c69 (diff)
downloadrails-948c2c48df04e775e5b5a3da5f54e0d61299dc54.tar.gz
rails-948c2c48df04e775e5b5a3da5f54e0d61299dc54.tar.bz2
rails-948c2c48df04e775e5b5a3da5f54e0d61299dc54.zip
Use ssl in guide and comment [ci skip]
Diffstat (limited to 'activejob')
-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 eec9ae08bb..ebf6f384e3 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}[http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/ThreadPoolExecutor.html] for executor options.
+ # See {Concurrent::ThreadPoolExecutor}[https://ruby-concurrency.github.io/concurrent-ruby/Concurrent/ThreadPoolExecutor.html] for executor options.
def initialize(**executor_options)
@scheduler = Scheduler.new(**executor_options)
end