diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-04-29 20:35:31 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-04-29 22:01:20 +0100 |
commit | 887c6f8ddf4ba4f40b29e168b751fbb5c240bbde (patch) | |
tree | c60839c689001f5ab2c43f57e2ea2e6eca60ce92 | |
parent | 6b000ada20b738e958d15c247011557531905bc0 (diff) |
Use variable interpolation.
-rw-r--r-- | lib/acts_as_xapian/acts_as_xapian.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/acts_as_xapian/acts_as_xapian.rb b/lib/acts_as_xapian/acts_as_xapian.rb index a0ced0c93..0d15fc5bd 100644 --- a/lib/acts_as_xapian/acts_as_xapian.rb +++ b/lib/acts_as_xapian/acts_as_xapian.rb @@ -615,7 +615,7 @@ module ActsAsXapian # Abort if full rebuild is going on new_path = ActsAsXapian.db_path + ".new" if File.exist?(new_path) - raise "aborting incremental index update while full index rebuild happens; found existing " + new_path + raise "aborting incremental index update while full index rebuild happens; found existing #{new_path}" end ActsAsXapianJob.pluck(:id).each do |id| |