Rails Scales!: Wrong file and content in Solid Queue configuration example (p151)

@cplanas & @michaelswaine

On p150, under the header of “Configuring Solid Queue“, the file and content provided does not match the preceding text.

The last point on p150 ends with:

To summarize, the following configuration sets up three processes for high_priority tasks and
one for low_priority:

The file content which follows, however, is a repetition of an earlier example which shows the content from config/recurring.yml.

Instead, it appears the content should be referencing this file (on the “completed” branch) and content, included below, from the source code on github:

default: &default
  dispatchers:
    - polling_interval: 1
      batch_size: 500
  workers:
    - queues: high_priority
      processes: 3
    - queues: low_priority
      processes: 1

development:
  <<: *default

test:
  <<: *default

production:
  <<: *default

Affected version: P1.0

Present in:

Thanks!