You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by kw...@apache.org on 2016/06/01 13:19:37 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 91f8edca8 -> d16199ce7


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


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/d16199ce
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/d16199ce
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/d16199ce

Branch: refs/heads/branch_6x
Commit: d16199ce7e94b5e3a6f84e748aac8ebb068258e2
Parents: 91f8edc
Author: Karl Wright <Da...@gmail.com>
Authored: Wed Jun 1 09:17:16 2016 -0400
Committer: Karl Wright <Da...@gmail.com>
Committed: Wed Jun 1 09:18:40 2016 -0400

----------------------------------------------------------------------
 .../src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/d16199ce/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java
----------------------------------------------------------------------
diff --git a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java
index c895743..9f44157 100644
--- a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java
+++ b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/XYZBounds.java
@@ -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;