Skip to content

Commit

Permalink
Merge pull request #64 from doximity/benjaminoakes/env-fetch
Browse files Browse the repository at this point in the history
Recommend ENV.fetch to fail fast
  • Loading branch information
benjaminoakes authored Feb 13, 2024
2 parents 0860ce2 + e44e664 commit 56c457d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ For Rails, please set up SuperSpreader using an initializer:
# config/initializers/super_spreader.rb

SuperSpreader.logger = Rails.logger
SuperSpreader.redis = Redis.new(url: ENV["REDIS_URL"])
SuperSpreader.redis = Redis.new(url: ENV.fetch("REDIS_URL"))
```

## Roadmap
Expand Down

0 comments on commit 56c457d

Please sign in to comment.