From 4152008f2ca7bdd7b2b4afd3cd592ec3ab5dea7d Mon Sep 17 00:00:00 2001 From: "Ben Sheldon [he/him]" Date: Wed, 4 Aug 2021 10:06:30 -0700 Subject: [PATCH] Fix Readme lint warnings (#320) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 47753e141..4bc5f99e2 100644 --- a/README.md +++ b/README.md @@ -706,7 +706,7 @@ A workaround to this limitation is to make a direct database connection availabl url: postgres://database_host/my_database ``` -2. Create a new ActiveRecord base class that uses the direct database connection +1. Create a new ActiveRecord base class that uses the direct database connection ```ruby # app/models/application_direct_record.rb @@ -717,11 +717,11 @@ A workaround to this limitation is to make a direct database connection availabl end ``` -3. Configure GoodJob to use the newly created ActiveRecord base class: +1. Configure GoodJob to use the newly created ActiveRecord base class: ```ruby # config/initializers/good_job.rb - + GoodJob.active_record_parent_class = "ApplicationDirectRecord" ```