Changeset 8325
- Timestamp:
- 12/06/07 22:05:48 (1 year ago)
- Files:
-
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record/query_cache.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r8321 r8325 1 1 *2.0.0* (December 6th, 2007) 2 3 * Fixed that the Query Cache should just be ignored if the database is misconfigured (so that the "About your applications environment" works even before the database has been created) [DHH] 2 4 3 5 * Fixed that the truncation of strings longer than 50 chars should use inspect so newlines etc are escaped #10385 [norbert] trunk/activerecord/lib/active_record/query_cache.rb
r7498 r8325 8 8 connection.cache(&block) 9 9 end 10 rescue 11 yield # if the database is not present, don't let the cache spoil the party 10 12 end 11 13