Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private ConfigEntry toConfigEntry(ConfigDef.ConfigKey configKey,
Object value,
ConfigSource source,
Function<String, String> converter) {
// Convert the value into a nulllable string suitable for storing in ConfigEntry.
// Convert the value into a nullable string suitable for storing in ConfigEntry.
String stringValue = null;
if (value != null) {
if (value instanceof String) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class StandardAuthorizer implements ClusterMetadataAuthorizer {
public final static String ALLOW_EVERYONE_IF_NO_ACL_IS_FOUND_CONFIG = "allow.everyone.if.no.acl.found";

/**
* A future which is completed once we have loaded up to the initial high water mark.
* A future which is completed once we have loaded up to the initial high watermark.
*/
private final CompletableFuture<Void> initialLoadFuture = new CompletableFuture<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ static AuthorizationResult findResult(Action action,
}
// Check if the operation field matches. Here we hit a slight complication.
// ACLs for various operations (READ, WRITE, DELETE, ALTER), "imply" the presence
// of DESCRIBE, even if it isn't explictly stated. A similar rule applies to
// of DESCRIBE, even if it isn't explicitly stated. A similar rule applies to
// DESCRIBE_CONFIGS.
//
// But this rule only applies to ALLOW ACLs. So for example, a DENY ACL for READ
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public interface MigrationClient {
* Read or initialize the ZK migration leader state in ZK. If the ZNode is absent, the given {@code initialState}
* will be written and subsequently returned with the zkVersion of the node. If the ZNode is present, it will be
* read and returned.
* @param initialState An initial, emtpy, state to write to ZooKeeper for the migration state.
* @param initialState An initial, empty, state to write to ZooKeeper for the migration state.
* @return The existing migration state, or the initial state given.
*/
ZkMigrationLeadershipState getOrCreateMigrationRecoveryState(ZkMigrationLeadershipState initialState);
Expand Down