diff options
author | Rafael França <rafael@franca.dev> | 2019-07-23 08:45:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 08:45:33 -0400 |
commit | 31105c81cc82ae829c382a4eee2c5aa362882dea (patch) | |
tree | 612652eea22f2e163a004f5fae3d9ef39699e55b /guides | |
parent | 990c07794e68b3df5ba0e987db76d77f7f674da1 (diff) | |
parent | 4a84942e0b99807d1320cf2e4563ede53cf75b82 (diff) | |
download | rails-31105c81cc82ae829c382a4eee2c5aa362882dea.tar.gz rails-31105c81cc82ae829c382a4eee2c5aa362882dea.tar.bz2 rails-31105c81cc82ae829c382a4eee2c5aa362882dea.zip |
Merge pull request #36733 from ch3rub1m/fix-cache-timestamp-format-guide
Fix cache_timestamp_format default value in guides
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 80cd141de8..ded985debe 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -353,7 +353,7 @@ All these configuration options are delegated to the `I18n` library. * `config.active_record.lock_optimistically` controls whether Active Record will use optimistic locking and is `true` by default. -* `config.active_record.cache_timestamp_format` controls the format of the timestamp value in the cache key. Default is `:nsec`. +* `config.active_record.cache_timestamp_format` controls the format of the timestamp value in the cache key. Default is `:usec`. * `config.active_record.record_timestamps` is a boolean value which controls whether or not timestamping of `create` and `update` operations on a model occur. The default value is `true`. |