-
Notifications
You must be signed in to change notification settings - Fork 7.3k
ZOOKEEPER-1636: cleanup completion list of a failed multi request #1030
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
Conversation
anmolnar
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 lgtm
We're not backporting patches automatically to 3.4 anymore. Only security and critical bug fixes allowed.
I think this one is good to go. Thanks!
| const int nops = iteration * type_count; | ||
| char buff[1024]; | ||
|
|
||
| zoo_op_result_t results[nops]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There're some indentation mistakes in this test. Please fix them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done!
// thank you for this catch!
This is a backport of #717 to `branch-3.4` For some reason it was NOT merged to `branch-3.4`, but only to `branch-3.5` and `master`: - 4bd32be - b1fd480 Here, it's almost a cherry-pick of the original patch, but slightly adopted to specific of `branch-3.4`. Namely, `cleanup_failed_multi()` and `deserialize_multi()` do not have the first parameter `zhandle_t *zh`. ---- I wish to backport this also to use it as the base for my #999 Author: Alexander A. Strelets <streletsaa@gmail.com> Reviewers: Andor Molnár <andor@apache.org>, Michael Han <hanm@apache.org> Closes #1030 from xoiss/ZOOKEEPER-1636
This is a backport of #717 to
branch-3.4For some reason it was NOT merged to
branch-3.4, but only tobranch-3.5andmaster:Here, it's almost a cherry-pick of the original patch, but slightly adopted to specific of
branch-3.4.Namely,
cleanup_failed_multi()anddeserialize_multi()do not have the first parameterzhandle_t *zh.I wish to backport this also to use it as the base for my #999