-
Notifications
You must be signed in to change notification settings - Fork 898
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ISSUE #81]Fix RocketMQTemplate.syncSend collection type method signature #150
Conversation
Hi @MartinDai, do you verified in your environment? I tried your pr, but still the |
I verified that it is ok.Can you provide your invoke this method's code segment? |
OKay, It's success now. So why not just change the method signature to |
Because |
@MartinDai, Got it, LGTM~ |
@MartinDai It would be helpful to verify if you could add some test in your polish. I would like to follow up and help to merge this pr:-) |
OK, I will add some test code soon. |
remove duplicate OrderPaidEvent class; add rocketmq-domain-demo module to make samples module code-style better;
@vongosling I was committed some test code,but the Travis CI build failed. I don't understand the error detail, can you help to process? |
@MartinDai The reason for the failure of Travis CI may be the lack of Apache license in your newly created file. But more importantly, you should write some unit tests instead of sample. |
@RongtongJin @vongosling I was added some unit test code,you can check it now. |
@MartinDai Just add some unit test to verify your modification instead of making the code more complex :-( |
@MartinDai Could you delete sample related code that you add ?We don't need a new sample. |
@RongtongJin The unnecessary code was reverted, and the Travis CI build passed.It means the unit test was passed right? |
Good job, and the unit test was passed, but even if choose the wrong type, it will also pass. |
@RongtongJin I have changed the |
LGTM~ |
@MartinDai could you resolve the conflict first, and we will merge this PR ASAP. |
@duhenglucky Has done yet. You can merge now |
What is the purpose of the change
fix RocketMQTemplate.syncSend collection type method signature
Verifying this change
Follow this checklist to help us incorporate your contribution quickly and easily. Notice,
it would be helpful if you could finish the following 5 checklist(the last one is not necessary)before request the community to review your PR
.[ISSUE #123] Fix UnknownException when host config not exist
. Each commit in the pull request should have a meaningful subject line and body.mvn -B clean apache-rat:check findbugs:findbugs checkstyle:checkstyle
to make sure basic checks pass. Runmvn clean install -DskipITs
to make sure unit-test pass. Runmvn clean test-compile failsafe:integration-test
to make sure integration-test pass.