You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rya.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2015/12/17 05:25:46 UTC

[jira] [Commented] (RYA-19) Type-o in MongoDBRyaDAO

    [ https://issues.apache.org/jira/browse/RYA-19?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15061438#comment-15061438 ] 

ASF GitHub Bot commented on RYA-19:
-----------------------------------

GitHub user pujav65 opened a pull request:

    https://github.com/apache/incubator-rya/pull/5

    Rya 17, RYA-19, RYA-20

    Addressed issue with wildcard deletes, copy and paste error with setting username/pwd, and redundant indices.

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

    $ git pull https://github.com/pujav65/incubator-rya RYA-17

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

    https://github.com/apache/incubator-rya/pull/5.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 #5
    
----
commit bf56114dc3217f9914c403fef4018badb7e5b2b7
Author: pujav65 <pu...@gmail.com>
Date:   2015-11-10T20:10:02Z

    updating poms

commit 2a6f730880f340c9f979e1905d8f64963dda5029
Author: Josh Elser <el...@apache.org>
Date:   2015-11-21T22:37:39Z

    RYA-5 Configure maven-enforcer-plugin to require a minimum verison of 3.0.4.

commit ce4a10ff5eafa2b85cb6829e5876956d5dd2278a
Author: Aaron Mihalik <mi...@alum.mit.edu>
Date:   2015-11-22T17:27:56Z

    RYA-3 Changing Manual to Markdown; linking README

commit 80faf06d48165e65271a52856238896521fcf218
Author: Aaron Mihalik <mi...@alum.mit.edu>
Date:   2015-12-01T20:11:17Z

    RYA-7 POM and License Clean-up for Apache Move
    
    Numerous POM and License Mods:
     - Make the apache pom the parent
     - Depend on Apache releases for Hadoop and ZooKeeper
     - Updated to most recent bug-fix release for dependencies
     - Moved Deps to Parent POM
     - Change groupId from mvn.rya to org.apache.rya
     - Set proper names for each maven module
     - Fix SCM block in parent pom
     - Remove Dead/CB Projects
     - Remove Extra Repos/Profiles
     - Moved rya.sail.impl to rya.sail

commit e5e227c159fdcdb3ccc05af0049b35f78aa4831e
Author: ejwhite922 <er...@sparta.com>
Date:   2015-12-04T21:35:23Z

    RYA-13 Add delete support to secondary indices

commit 990f1ffe272fe13b99367528fb8bb661f8e29f45
Author: Aaron Mihalik <mi...@alum.mit.edu>
Date:   2015-12-04T23:08:53Z

    RYA-14 Updated to Java 1.7; Minor geo issue
    
    Also fixed a minor geo issue with RYA-13 commit.

commit e6be84a407e05c66cb4b4b6ef225d7e07dd10fcf
Author: Aaron Mihalik <mi...@alum.mit.edu>
Date:   2015-12-05T01:25:51Z

    RYA-12 Adding support for Additional Iterators on Core Tables
    
    note: the config file format may change in the future.  This is really
    just a change to the client Config API and Query Engine.
    
    Also pulling in an orphan "Manual Flush" commit that did not make it
    into the repo.

commit 288c7742ec7fd12e29b94092708742aab8e104f8
Author: pujav65 <pu...@gmail.com>
Date:   2015-12-17T04:23:25Z

    RYA-17, RYA-19, RYA-20 issue with mongo deletes, typo in constructor, redundant indices

----


> Type-o in MongoDBRyaDAO
> -----------------------
>
>                 Key: RYA-19
>                 URL: https://issues.apache.org/jira/browse/RYA-19
>             Project: Rya
>          Issue Type: Bug
>          Components: dao
>    Affects Versions: 3.2.10
>            Reporter: Jeff Dasch
>            Assignee: Puja Valiyil 
>
> Prevents a user from authenticating unless their password and db_name are the same.
> At MongoDBRyaDAO.java:95
> Bug:
> MongoCredential cred = MongoCredential.createCredential(
>     conf.get(MongoDBRdfConfiguration.MONGO_USER),
>     conf.get(MongoDBRdfConfiguration.MONGO_USER_PASSWORD),
>     conf.get(MongoDBRdfConfiguration.MONGO_DB_NAME).toCharArray());
> Fix:
> MongoCredential cred = MongoCredential.createCredential(
>     conf.get(MongoDBRdfConfiguration.MONGO_USER),
>     conf.get(MongoDBRdfConfiguration.MONGO_DB_NAME),
>     conf.get(MongoDBRdfConfiguration.MONGO_USER_PASSWORD).toCharArray());



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