Github user clebertsuconic commented on the issue:
https://github.com/apache/activemq-artemis/pull/2186
I have been only doing git cherry-pick -x on 2.6.x
you have two options:
Do the following:
```sh
git fetch upstream
git checkout upstream/2.6.x -B 2.6.x
git cherry-pick -x <the original-commit>
git push apache 2.6.x
```
or
```
git commit --ammend
```
And add the text cherry-pick -x would have added to your commit.
and I will merge it for you.
The issue is that gitbot doesn't close Pull Requests on non default
branches unless we do an exact merge without rebasing.
---