2016/10/07分のコミットです。
CHANGELOGへの追加はありませんでした。
Merge pull request #24963 from fertapric/recover-db-runtime-on-production-logs
activerecord/lib/active_record/log_subscriber.rb
の修正です。
ActiveRecord::LogSubscriber#sql
メソッドでlogger.debug?
でない場合にearly returnしていたのを、returnする前にruntime
の値を設定するよう修正しています。
def sql(event) - return unless logger.debug? - self.class.runtime += event.duration + return unless logger.debug?
log levelがdebug以下の場合に、runtime
が設定されなくなってしまっていたのを避ける為、との事です。
Simplify serializable test to avoid mystery deadlock
activerecord/test/cases/adapters/postgresql/transaction_test.rb
の修正です。
serializable testのリファクタリングを行っています。
時折謎のdeadlockがおきてしまうので、それを避ける為に、との事です。
Bump sdoc to 1.0.0.beta1 which includes fix to support Ruby 2.4
Gemfile
、Gemfile.lock
の修正です。
sdocのバージョンを1.0.0.beta1
に上げています。Ruby 2.4で使えるようにする(json
のdependencyを削除)為との事です。
Include sdoc 1.0.0.beta2 which includes updated rdoc w/o hard json dep
Gemfile
、Gemfile.lock
の修正です。
sdocのバージョンを1.0.0.beta2
に上げています。1.0.0.beta1
ではrdocのdependencyの指定に誤りがあった為、再度リリースしたようです。