[
https://issues.apache.org/jira/browse/NIFI-3034?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15905606#comment-15905606
]
ASF GitHub Bot commented on NIFI-3034:
--------------------------------------
Github user joewitt commented on the issue:
https://github.com/apache/nifi/pull/1323
I'm hardly a git guru but what we'd like to end up with is your commits
after the current point on master. So first you need to pull latest master.
Let's say 'origin' is pointing at the canonical apache nifi repository.
git fetch --all
git rebase origin/master
After this you should end up with your commits after all the other already
merged commits. Then you can do 'rebase -i HEAD~5' (assuming there are 5 of
your commits at the end). You can mark the last 4 commits in the list as 's'
which will squash them with the first commit in the list resulting in a single
commit.
Hopefully that helps.
> New Processor to use Counters
> -----------------------------
>
> Key: NIFI-3034
> URL: https://issues.apache.org/jira/browse/NIFI-3034
> Project: Apache NiFi
> Issue Type: New Feature
> Reporter: Sai Peddy
> Priority: Minor
> Attachments: 0002-NIFI-3034-fixed-checkstyle-and-cleaned-up-code.patch
>
>
> The processor lets you update counters (increment and decrement). To help
> keep track of data going through the system. This allows for use of counters
> within the flow - not just API.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)