diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-01-06 15:58:26 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-01-06 15:58:26 +0000 |
commit | a5a7283300bc2eb9da608ceedba08f31315410b0 (patch) | |
tree | 2e2d7dca250a509d74b26a69aab934486e279a92 /spec/spec_helper.rb | |
parent | 5170dcb92cbfbbbf09e16a59040c421a800570d0 (diff) |
Reduce excess flush operations (they're slooow)
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index fe244c77d..29ce6bca5 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -97,7 +97,7 @@ end def update_xapian_index verbose = false - ActsAsXapian.update_index(flush_to_disk=true, verbose) + ActsAsXapian.update_index(flush_to_disk=false, verbose) end # Validate an entire HTML page |