diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-01-16 21:48:41 +0000 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-01-16 21:48:41 +0000 |
commit | bae21e38242aac2c5843bae5ea5fe3b09408a4f9 (patch) | |
tree | de46e80db32c3d41686173dba4fc6f0f8c9b37b2 | |
parent | 73b2fb25cd257a2e37865198fc684d3e572cf582 (diff) |
Fix constant name in string
-rw-r--r-- | vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb b/vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb index 25347e0db..45e412e0e 100644 --- a/vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb +++ b/vendor/plugins/acts_as_xapian/lib/acts_as_xapian.rb @@ -293,7 +293,7 @@ module ActsAsXapian if e.message =~ /DatabaseModifiedError: / # This should be a transient error, so back off and try again, up to a point if tries > MSET_MAX_TRIES - raise "Received DatabaseModifiedError from Xapian even after retrying #{MAX_TRIES} times" + raise "Received DatabaseModifiedError from Xapian even after retrying #{MSET_MAX_TRIES} times" else sleep delay end |