[jira] [Commented] (SOLR-7305) BlendedInfixLookupFactory swallows root ioexception when it occurs

2015-03-27 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-7305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14384616#comment-14384616
 ] 

ASF GitHub Bot commented on SOLR-7305:
--

Github user asfgit closed the pull request at:

https://github.com/apache/lucene-solr/pull/137


 BlendedInfixLookupFactory swallows root ioexception when it occurs
 --

 Key: SOLR-7305
 URL: https://issues.apache.org/jira/browse/SOLR-7305
 Project: Solr
  Issue Type: Bug
  Components: Suggester
Affects Versions: 4.10.4, Trunk
Reporter: Stephan Lagraulet
Assignee: Shalin Shekhar Mangar
 Fix For: Trunk, 5.1


 See BlendedInfixLookupFactory.java line 105:
 {code:java}
 try {
   return new 
 BlendedInfixSuggester(core.getSolrConfig().luceneMatchVersion, 
FSDirectory.open(new File(indexPath)),
indexAnalyzer, queryAnalyzer, 
 minPrefixChars,
blenderType, numFactor);
 } catch (IOException e) {
   throw new RuntimeException();
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-7305) BlendedInfixLookupFactory swallows root ioexception when it occurs

2015-03-25 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-7305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14380328#comment-14380328
 ] 

ASF subversion and git services commented on SOLR-7305:
---

Commit 1669180 from sha...@apache.org in branch 'dev/trunk'
[ https://svn.apache.org/r1669180 ]

SOLR-7305: BlendedInfixLookupFactory swallows root IOException when it occurs. 
This closes #137

 BlendedInfixLookupFactory swallows root ioexception when it occurs
 --

 Key: SOLR-7305
 URL: https://issues.apache.org/jira/browse/SOLR-7305
 Project: Solr
  Issue Type: Bug
  Components: Suggester
Affects Versions: 4.10.4, Trunk
Reporter: Stephan Lagraulet
Assignee: Shalin Shekhar Mangar

 See BlendedInfixLookupFactory.java line 105:
 {code:java}
 try {
   return new 
 BlendedInfixSuggester(core.getSolrConfig().luceneMatchVersion, 
FSDirectory.open(new File(indexPath)),
indexAnalyzer, queryAnalyzer, 
 minPrefixChars,
blenderType, numFactor);
 } catch (IOException e) {
   throw new RuntimeException();
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-7305) BlendedInfixLookupFactory swallows root ioexception when it occurs

2015-03-25 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-7305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14380356#comment-14380356
 ] 

ASF subversion and git services commented on SOLR-7305:
---

Commit 1669186 from sha...@apache.org in branch 'dev/branches/branch_5x'
[ https://svn.apache.org/r1669186 ]

SOLR-7305: BlendedInfixLookupFactory swallows root IOException when it occurs. 
This closes #137

 BlendedInfixLookupFactory swallows root ioexception when it occurs
 --

 Key: SOLR-7305
 URL: https://issues.apache.org/jira/browse/SOLR-7305
 Project: Solr
  Issue Type: Bug
  Components: Suggester
Affects Versions: 4.10.4, Trunk
Reporter: Stephan Lagraulet
Assignee: Shalin Shekhar Mangar

 See BlendedInfixLookupFactory.java line 105:
 {code:java}
 try {
   return new 
 BlendedInfixSuggester(core.getSolrConfig().luceneMatchVersion, 
FSDirectory.open(new File(indexPath)),
indexAnalyzer, queryAnalyzer, 
 minPrefixChars,
blenderType, numFactor);
 } catch (IOException e) {
   throw new RuntimeException();
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-7305) BlendedInfixLookupFactory swallows root ioexception when it occurs

2015-03-25 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-7305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14379713#comment-14379713
 ] 

ASF GitHub Bot commented on SOLR-7305:
--

GitHub user stephlag opened a pull request:

https://github.com/apache/lucene-solr/pull/137

Fix SOLR-7305

Does not correct the underlying exception (which occurs on a core reload) 
but exposes the root cause

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/stephlag/lucene-solr patch-2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/lucene-solr/pull/137.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #137


commit fb5ea39ae242e3e5b36f8bb52b24a20ac5606d40
Author: Stephan L stefa...@yahoo.fr
Date:   2015-03-25T11:28:45Z

Fix SOLR-7305

Does not correct the underlying exception (which occurs on a core reload) 
but exposes the root cause




 BlendedInfixLookupFactory swallows root ioexception when it occurs
 --

 Key: SOLR-7305
 URL: https://issues.apache.org/jira/browse/SOLR-7305
 Project: Solr
  Issue Type: Bug
  Components: Suggester
Affects Versions: 4.10.4, Trunk
Reporter: Stephan Lagraulet

 See BlendedInfixLookupFactory.java line 105:
 {code:java}
 try {
   return new 
 BlendedInfixSuggester(core.getSolrConfig().luceneMatchVersion, 
FSDirectory.open(new File(indexPath)),
indexAnalyzer, queryAnalyzer, 
 minPrefixChars,
blenderType, numFactor);
 } catch (IOException e) {
   throw new RuntimeException();
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org