You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@manifoldcf.apache.org by "Karl Wright (JIRA)" <ji...@apache.org> on 2012/06/26 10:29:44 UTC

[jira] [Created] (CONNECTORS-485) Update Solr plugins to latest Solr code

Karl Wright created CONNECTORS-485:
--------------------------------------

             Summary: Update Solr plugins to latest Solr code
                 Key: CONNECTORS-485
                 URL: https://issues.apache.org/jira/browse/CONNECTORS-485
             Project: ManifoldCF
          Issue Type: Task
          Components: Solr-3.x-component, Solr-4.x-component
    Affects Versions: ManifoldCF 0.6
            Reporter: Karl Wright
            Assignee: Karl Wright
             Fix For: ManifoldCF 0.6


Solr has had a couple of releases since the plugins were released.  Time to update them.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CONNECTORS-485) Update Solr plugins to latest Solr code

Posted by "Karl Wright (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CONNECTORS-485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13402009#comment-13402009 ] 

Karl Wright commented on CONNECTORS-485:
----------------------------------------

The tests are failing because ManifoldCFSearchComponent is not initializing correctly.  Specifically, this code:

{code}
  @Override
  public void init(NamedList args)
  {
    super.init(args);
    authorityBaseURL = (String)args.get("AuthorityServiceBaseURL");
    if (authorityBaseURL == null)
    {
      System.out.println("USING DEFAULT BASE URL!!");
      authorityBaseURL = "http://localhost:8345/mcf-authority-service";
    }
    ...
{code}

... is printing:

{code}
   [junit4]   1> USING DEFAULT BASE URL!!
   [junit4]   1>
{code}

... even though the search component in the test is declared like this (and the solrconfig.xml has not changed the last time this solr-4.x plugin was worked on):

{code}
  <!-- test MCF Security Filter settings -->
  <searchComponent name="mcf-param" class="org.apache.solr.mcf.ManifoldCFSearchComponent" >
    <str name="AuthorityServiceBaseURL">http://localhost:8345/mcf-as</str>
    <int name="SocketTimeOut">3000</int>
    <str name="AllowAttributePrefix">aap-</str>
    <str name="DenyAttributePrefix">dap-</str>
  </searchComponent>
{code}

                
> Update Solr plugins to latest Solr code
> ---------------------------------------
>
>                 Key: CONNECTORS-485
>                 URL: https://issues.apache.org/jira/browse/CONNECTORS-485
>             Project: ManifoldCF
>          Issue Type: Task
>          Components: Solr-3.x-component, Solr-4.x-component
>    Affects Versions: ManifoldCF 0.6
>            Reporter: Karl Wright
>            Assignee: Karl Wright
>             Fix For: ManifoldCF 0.6
>
>
> Solr has had a couple of releases since the plugins were released.  Time to update them.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CONNECTORS-485) Update Solr plugins to latest Solr code

Posted by "Karl Wright (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CONNECTORS-485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13401874#comment-13401874 ] 

Karl Wright commented on CONNECTORS-485:
----------------------------------------

Solr 4.x changes are massive; r1354313 gets it to build again, but still fails the tests.

                
> Update Solr plugins to latest Solr code
> ---------------------------------------
>
>                 Key: CONNECTORS-485
>                 URL: https://issues.apache.org/jira/browse/CONNECTORS-485
>             Project: ManifoldCF
>          Issue Type: Task
>          Components: Solr-3.x-component, Solr-4.x-component
>    Affects Versions: ManifoldCF 0.6
>            Reporter: Karl Wright
>            Assignee: Karl Wright
>             Fix For: ManifoldCF 0.6
>
>
> Solr has had a couple of releases since the plugins were released.  Time to update them.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CONNECTORS-485) Update Solr plugins to latest Solr code

Posted by "Karl Wright (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CONNECTORS-485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13402150#comment-13402150 ] 

Karl Wright commented on CONNECTORS-485:
----------------------------------------

Created SOLR-3581 to track this issue in SOLR.  Hopefully they'll tell me we screwed up in some way.

                
> Update Solr plugins to latest Solr code
> ---------------------------------------
>
>                 Key: CONNECTORS-485
>                 URL: https://issues.apache.org/jira/browse/CONNECTORS-485
>             Project: ManifoldCF
>          Issue Type: Task
>          Components: Solr-3.x-component, Solr-4.x-component
>    Affects Versions: ManifoldCF 0.6
>            Reporter: Karl Wright
>            Assignee: Karl Wright
>             Fix For: ManifoldCF 0.6
>
>
> Solr has had a couple of releases since the plugins were released.  Time to update them.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CONNECTORS-485) Update Solr plugins to latest Solr code

Posted by "Karl Wright (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CONNECTORS-485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13402189#comment-13402189 ] 

Karl Wright commented on CONNECTORS-485:
----------------------------------------

Found the issue; committed the rest of the 4.x fix.

r1354462.

                
> Update Solr plugins to latest Solr code
> ---------------------------------------
>
>                 Key: CONNECTORS-485
>                 URL: https://issues.apache.org/jira/browse/CONNECTORS-485
>             Project: ManifoldCF
>          Issue Type: Task
>          Components: Solr-3.x-component, Solr-4.x-component
>    Affects Versions: ManifoldCF 0.6
>            Reporter: Karl Wright
>            Assignee: Karl Wright
>             Fix For: ManifoldCF 0.6
>
>
> Solr has had a couple of releases since the plugins were released.  Time to update them.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CONNECTORS-485) Update Solr plugins to latest Solr code

Posted by "Karl Wright (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CONNECTORS-485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13401737#comment-13401737 ] 

Karl Wright commented on CONNECTORS-485:
----------------------------------------

r1354269 for the Solr 3.x changes.

                
> Update Solr plugins to latest Solr code
> ---------------------------------------
>
>                 Key: CONNECTORS-485
>                 URL: https://issues.apache.org/jira/browse/CONNECTORS-485
>             Project: ManifoldCF
>          Issue Type: Task
>          Components: Solr-3.x-component, Solr-4.x-component
>    Affects Versions: ManifoldCF 0.6
>            Reporter: Karl Wright
>            Assignee: Karl Wright
>             Fix For: ManifoldCF 0.6
>
>
> Solr has had a couple of releases since the plugins were released.  Time to update them.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Reopened] (CONNECTORS-485) Update Solr plugins to latest Solr code

Posted by "Karl Wright (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CONNECTORS-485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Karl Wright reopened CONNECTORS-485:
------------------------------------


Reopening; I need to modify build.xml in trunk to pull down the new plug-in releases still.

                
> Update Solr plugins to latest Solr code
> ---------------------------------------
>
>                 Key: CONNECTORS-485
>                 URL: https://issues.apache.org/jira/browse/CONNECTORS-485
>             Project: ManifoldCF
>          Issue Type: Task
>          Components: Solr-3.x-component, Solr-4.x-component
>    Affects Versions: ManifoldCF 0.6
>            Reporter: Karl Wright
>            Assignee: Karl Wright
>             Fix For: ManifoldCF 0.6
>
>
> Solr has had a couple of releases since the plugins were released.  Time to update them.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (CONNECTORS-485) Update Solr plugins to latest Solr code

Posted by "Karl Wright (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CONNECTORS-485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Karl Wright resolved CONNECTORS-485.
------------------------------------

    Resolution: Fixed
    
> Update Solr plugins to latest Solr code
> ---------------------------------------
>
>                 Key: CONNECTORS-485
>                 URL: https://issues.apache.org/jira/browse/CONNECTORS-485
>             Project: ManifoldCF
>          Issue Type: Task
>          Components: Solr-3.x-component, Solr-4.x-component
>    Affects Versions: ManifoldCF 0.6
>            Reporter: Karl Wright
>            Assignee: Karl Wright
>             Fix For: ManifoldCF 0.6
>
>
> Solr has had a couple of releases since the plugins were released.  Time to update them.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira