-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Fix Unrecognized error #18527
Fix Unrecognized error #18527
Conversation
ff8cde7
to
43f89bb
Compare
@@ -62,7 +62,8 @@ public static int compareTierNames(String a, String b) { | |||
public static void checkMasterClientService(AlluxioConfiguration alluxioConf) throws IOException { | |||
MembershipType membershipType = alluxioConf | |||
.getEnum(PropertyKey.WORKER_MEMBERSHIP_MANAGER_TYPE, MembershipType.class); | |||
if (membershipType == MembershipType.ETCD || membershipType == MembershipType.STATIC) { | |||
if (membershipType == MembershipType.ETCD || membershipType == MembershipType.STATIC | |||
|| membershipType == MembershipType.SERVICE_REGISTRY) { |
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.
use membershipType != MembershipType.MASTER instead?
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.
LGTM
and try to fix test
43f89bb
to
ba559bf
Compare
alluxio-bot, merge this please |
merge failed: |
alluxio-bot, merge this please |
Fix Unrecognized error
What changes are proposed in this pull request?
Please outline the changes and how this PR fixes the issue.
Why are the changes needed?
Please clarify why the changes are needed. For instance,
Does this PR introduce any user facing changes?
Please list the user-facing changes introduced by your change, including