Github user ijokarumawak commented on the issue:
https://github.com/apache/nifi/pull/2093
@arunma Thanks for the updates. I'm going to build it locally once again
just in case.
When you rebase or squash the commits, then you need to push to your branch
forcefully, for example:
```
# To rebase
git checkout master
git pull upstream master
git checkout <branch-for-pr>
git rebase master
# To squash (the HEAD~3 indicates how many recent commits you want to
rebase)
git rebase -i HEAD~3
# After rebase (with latest master, or squash commits), push updated commit
to the existing PR with -f option
git push -f origin <branch-for-pr>
```
By pushing updates to the existing branch, you don't need to close/open new
PR.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---