README.md in rails_distributed_tracing-1.1 vs README.md in rails_distributed_tracing-1.2
- old
+ new
@@ -67,9 +67,10 @@
connection = Faraday.new("http://google.com/") do |conn|
conn.use DistributedTracing::FaradayMiddleware
end
```
+## Important Note
Make sure that faraday and sidekiq gems are loaded before `rails_distributed_tracing`. Otherwise rails_distributed_tracing will not load the faraday and sidekiq related classes.
To ensure that `sidekiq` and `faraday` are loaded before `rails_distributed_tracing`, add sidekiq and faraday gem before rails_distributed_tracing in Gemfile. So that when rails load the Gemfile, sidekiq and faraday loaded before rails_distributed_tracing gem.
## Other