LUCENE-7310: Increase bounds slop factor by 2x to cover a specific failure.

This commit is contained in:
Karl Wright 2016-06-01 09:17:16 -04:00
parent 91f8edca8f
commit d16199ce7e
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public class XYZBounds implements Bounds {
* unacceptably large.
* Also, see LUCENE-7290 for a description of how geometry can magnify the bounds delta.
*/
private static final double FUDGE_FACTOR = Vector.MINIMUM_RESOLUTION * 500.0;
private static final double FUDGE_FACTOR = Vector.MINIMUM_RESOLUTION * 1000.0;
/** Minimum x */
private Double minX = null;