KAFKA-12700: override toString method to show correct value in doc (#10574)

Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
Luke Chen 2021-04-22 11:41:09 +08:00 committed by GitHub
parent 6013ac3cea
commit 523d63df98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -523,6 +523,11 @@ public class WorkerConfig extends AbstractConfig {
}
}
}
@Override
public String toString() {
return "List of comma-separated URIs, ex: http://localhost:8080,https://localhost:8443.";
}
}
private static class ResponseHttpHeadersValidator implements ConfigDef.Validator {