Skip to content
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

[improve] [client]Add new ServiceUrlProvider implementation: SameAuthParamsAutoClusterFailover #23129

Merged
merged 10 commits into from
Aug 12, 2024
Merged
Prev Previous commit
Next Next commit
checkstyle
  • Loading branch information
poorbarcode committed Aug 7, 2024
commit f4fb857994427273012c445f7fb17238bcd7d65d
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 147,7 @@ private void checkPulsarServices() {
case Failed: {
pulsarServiceStateArray[i] = PulsarServiceState.PreRecover;
checkCounterArray[i].setValue(1);
break;
}
case PreRecover: {
checkCounterArray[i].setValue(checkCounterArray[i].getValue() 1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 23,6 @@
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNull;
import static org.testng.Assert.assertTrue;
import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
Expand All @@ -32,7 31,6 @@
import lombok.extern.slf4j.Slf4j;
import org.apache.pulsar.client.api.Authentication;
import org.apache.pulsar.client.api.AuthenticationFactory;
import org.apache.pulsar.client.api.PulsarClientException;
import org.apache.pulsar.client.api.ServiceUrlProvider;
import org.apache.pulsar.client.impl.conf.ClientConfigurationData;
import org.awaitility.Awaitility;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 18,6 @@
*/
package org.apache.pulsar.client.impl;

import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
Expand Down
Loading