Is it possible to disable the new the explain functionality in Rails 3.2 globally via configuration? I\'m using activerecord-sqlserver-adapter 3.2.1 and there appear to be some
You should note that config.auto_explain_threshold_in_seconds has been completely removed in Rails 4.0 & 4.1. In 4.1 it will throw a full error.
config.auto_explain_threshold_in_seconds
See https://github.com/rails/rails/pull/9400/files
If you upgrade, comment that line out.