mirror of https://github.com/apache/kafka.git
MINOR: Fix typo in `AdminBootstrapAddresses` (#20352)
Fix the typo in `AdminBootstrapAddresses`. Reviewers: TengYao Chi <frankvicky@apache.org>, Ken Huang <s7133700@gmail.com>
This commit is contained in:
parent
c4fb1008c4
commit
58d894170a
|
@ -95,7 +95,7 @@ public final class AdminBootstrapAddresses {
|
|||
public String toString() {
|
||||
StringBuilder bld = new StringBuilder();
|
||||
bld.append("AdminBootstrapAddresses");
|
||||
bld.append("(usingBoostrapControllers=").append(usingBootstrapControllers);
|
||||
bld.append("(usingBootstrapControllers=").append(usingBootstrapControllers);
|
||||
bld.append(", addresses=[");
|
||||
String prefix = "";
|
||||
for (InetSocketAddress address : addresses) {
|
||||
|
|
Loading…
Reference in New Issue