rls: OobChannel doesn't use directpath by default (#7176)

This commit is contained in:
Jihun Cho 2020-07-01 12:02:49 -07:00 committed by GitHub
parent 21269bd188
commit b8822e56af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ final class CachingRlsLbClient {
"io.grpc.rls.CachingRlsLbClient.enable_oobchannel_directpath";
@VisibleForTesting
static boolean enableOobChannelDirectPath =
Boolean.parseBoolean(System.getProperty(RLS_ENABLE_OOB_CHANNEL_DIRECTPATH_PROPERTY, "true"));
Boolean.parseBoolean(System.getProperty(RLS_ENABLE_OOB_CHANNEL_DIRECTPATH_PROPERTY, "false"));
// All cache status changes (pending, backoff, success) must be under this lock
private final Object lock = new Object();