You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2018/03/12 12:02:00 UTC

[jira] [Commented] (NIFI-4960) Multiple Custom Processors don't work as espected.

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

ASF GitHub Bot commented on NIFI-4960:
--------------------------------------

GitHub user jomach opened a pull request:

    https://github.com/apache/nifi/pull/2531

    NIFI-4960

      * fix object setting.
    
    Thank you for submitting a contribution to Apache NiFi.
    
    In order to streamline the review of the contribution we ask you
    to ensure the following steps have been taken:
    
    ### For all changes:
    - [x ] Is there a JIRA ticket associated with this PR? Is it referenced 
         in the commit message? NIFI-4960
    
    - [x ] Does your PR title start with NIFI-XXXX where XXXX is the JIRA number you are trying to resolve? Pay particular attention to the hyphen "-" character.
    
    - [ ] Has your PR been rebased against the latest commit within the target branch (typically master)?
    
    - [ ] Is your initial contribution a single, squashed commit?
    
    ### For code changes:
    - [ x] Have you ensured that the full suite of tests is executed via mvn -Pcontrib-check clean install at the root nifi folder?
    - [ ] If adding new dependencies to the code, are these dependencies licensed in a way that is compatible for inclusion under [ASF 2.0](http://www.apache.org/legal/resolved.html#category-a)? 
    - [ ] If applicable, have you updated the LICENSE file, including the main LICENSE file under nifi-assembly?
    - [ ] If applicable, have you updated the NOTICE file, including the main NOTICE file found under nifi-assembly?
    - [ ] If adding new Properties, have you added .displayName in addition to .name (programmatic access) for each of the new properties?
    
    ### For documentation related changes:
    - [ ] Have you ensured that format looks appropriate for the output in which it is rendered?
    
    ### Note:
    Please ensure that once the PR is submitted, you check travis-ci for build issues and submit an update to your PR as soon as possible.


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

    $ git pull https://github.com/jomach/nifi nifi-4960

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

    https://github.com/apache/nifi/pull/2531.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 #2531
    
----
commit 1c0afdce6fb9453b1ebac2821f03421e68425459
Author: Jorge Machado <jo...@...>
Date:   2018-03-12T09:55:05Z

    NIFI-4960
      * fix object setting.

----


> Multiple Custom Processors don't work as espected.
> --------------------------------------------------
>
>                 Key: NIFI-4960
>                 URL: https://issues.apache.org/jira/browse/NIFI-4960
>             Project: Apache NiFi
>          Issue Type: Bug
>          Components: Configuration
>    Affects Versions: 1.5.0
>            Reporter: Jorge Machado
>            Priority: Major
>
> I we setting up the Nifi registry are we are getting this error when trying to import a flow from Registry into Nifi: 
> |Multiple versions of …. exist. No exact match for default:...:unversioned.|
> To note that we have multiple versions of the same processor in the lib folder (which works for Templates)
> Our Manifest inside the nar file looks like this: 
> {color:#333333}Manifest-Version: 1.0{color}
> {color:#333333}Implementation-Title: componentName{color}
> {color:#333333}Implementation-Version: 1.5.9.rc.1{color}
> {color:#333333}Nar-Dependency-Group: org.apache.nifi{color}
> {color:#333333}Nar-Version: 1.5.9.rc.1{color}
> {color:#333333}Nar-Dependency-Version: 1.5.0{color}
> {color:#333333}Nar-Id: {color}componentName
> {color:#333333}Nar-Group: com.{color}componentName
> {color:#333333}Nar-Dependency-Id: nifi-standard-services-api-nar{color}
> {color:#333333} {color}
> {color:#333333}I see this on the Nifi Logs: {color}
> {color:#333333}2018-03-12 08:33:51,304 INFO [NiFi Web Server-94] o.a.n.w.a.c.IllegalStateExceptionMapper java.lang.IllegalStateException: Multiple versions of com.gfk.nifi.processor.customlogging.CustomLogger exist. No exact match for default:ipmvp-nifi-customlogattribute:unversioned.. Returning Conflict response.{color}
>  
>  
> {color:#333333}After some debugging I found the bug on BundleUtils and I will patch it. {color}
> {code:java}
> public static BundleDTO createBundleDto(final org.apache.nifi.registry.flow.Bundle bundle) {
>     final BundleDTO dto = new BundleDTO();
>     dto.setArtifact(bundle.getArtifact());
>     dto.setGroup(dto.getGroup()); <-- Should be bundle right ? 
>     dto.setVersion(dto.getVersion()); <-- should be bundle right ?
>     return dto;
> }
> {code}



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