You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by "Pierre Villard (JIRA)" <ji...@apache.org> on 2018/01/17 20:50:01 UTC

[jira] [Resolved] (NIFI-4759) PutMongo does not handle updateKey field correctly

     [ https://issues.apache.org/jira/browse/NIFI-4759?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pierre Villard resolved NIFI-4759.
----------------------------------
       Resolution: Fixed
    Fix Version/s: 1.6.0

> PutMongo does not handle updateKey field correctly
> --------------------------------------------------
>
>                 Key: NIFI-4759
>                 URL: https://issues.apache.org/jira/browse/NIFI-4759
>             Project: Apache NiFi
>          Issue Type: Bug
>          Components: Extensions
>            Reporter: Mike Thomsen
>            Assignee: Mike Thomsen
>            Priority: Major
>             Fix For: 1.6.0
>
>
> Two issues:
> * The updateKey field is ignored in favor of _id in the update code block of PutMongo.
> * _id fields are always treated as strings, even if they're valid ObjectIds represented as a string. PutMongo should be able to handle these as ObjectIds.
> Regarding the first point, this works:
> {code:java}
> {
>     "_id": "1234",
>     "$set": { "msg": "Hello, world" }
> }
> {code}
> This does not:
> {code:java}
> {
>     "uniqueKey": "12345",
>     "$set": { "msg": "Hello, World" }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)