From 6e25a8f45406b73f97c6eb42ea5001a472a4ad4e Mon Sep 17 00:00:00 2001 From: londonoliver Date: Sat, 28 Mar 2020 19:38:01 -0700 Subject: [PATCH] fix grammar - ci skip --- guides/source/active_job_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md index 55f04cf829..753436e456 100644 --- a/guides/source/active_job_basics.md +++ b/guides/source/active_job_basics.md @@ -111,7 +111,7 @@ Job Execution ------------- For enqueuing and executing jobs in production you need to set up a queuing backend, -that is to say you need to decide for a 3rd-party queuing library that Rails should use. +that is to say you need to decide on a 3rd-party queuing library that Rails should use. Rails itself only provides an in-process queuing system, which only keeps the jobs in RAM. If the process crashes or the machine is reset, then all outstanding jobs are lost with the default async backend. This may be fine for smaller apps or non-critical jobs, but most