-
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-25596: Fix NPE and avoid permanent unreplicated data due to EOF #3008
Conversation
@@ -238,26 +243,27 @@ private static void startClusters() throws Exception { | |||
// as a component in deciding maximum number of parallel batches to send to the peer cluster. | |||
UTIL2.startMiniCluster(NUM_SLAVES2); | |||
|
|||
connection1 = ConnectionFactory.createConnection(CONF1); | |||
connection2 = ConnectionFactory.createConnection(CONF2); | |||
admin = new ReplicationAdmin(CONF1); |
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.
This was removed @apurtell. It was just one line change.
admin = new ReplicationAdmin(CONF1);
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
@apurtell Pre-commit looks good now, can you commit this now? |
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
Precommit is good this time, merging. |
…#3008) Signed-off-by: Andrew Purtell <[email protected]> Conflicts: hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationBase.java
No description provided.