Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions rls/src/main/java/io/grpc/rls/RlsLoadBalancerProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
import java.util.Map;

/**
* The provider for the "rls-experimental" balancing policy. This class should not be directly
* The provider for the "rls_experimental" balancing policy. This class should not be directly
* referenced in code. The policy should be accessed through {@link
* io.grpc.LoadBalancerRegistry#getProvider} with the name "rls-experimental".
* io.grpc.LoadBalancerRegistry#getProvider} with the name "rls_experimental".
*/
@Internal
public final class RlsLoadBalancerProvider extends LoadBalancerProvider {
Expand All @@ -49,7 +49,7 @@ public int getPriority() {

@Override
public String getPolicyName() {
return "rls-experimental";
return "rls_experimental";
}

@Override
Expand Down