-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
HBASE-22238 Fix TestRpcControllerFactory #147
Conversation
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
@@ -85,32 +86,15 @@ public HBaseRpcController newController(final List<CellScannable> cellIterables) | |||
|
|||
private static Multiset<Integer> GROUPED_PRIORITY = ConcurrentHashMultiset.create(); | |||
private static AtomicInteger INT_PRIORITY = new AtomicInteger(); | |||
private static AtomicInteger TABLE_PRIORITY = new AtomicInteger(); |
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.
For what purpose, we need to remove the table priroirty counter ? don't understand here ...
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.
We do not call the setPriority(TableName) method any more in async client, we will decide the priority outside the RpcController and then set with the setPriority(int) method. This is why we need to change the UT itself.
🎊 +1 overall
This message was automatically generated. |
No description provided.