folsom/src/main/java/com/spotify/folsom/authenticate/AsciiAuthenticator.java [49:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    .thenApply(
                        status -> {
                          if (status == MemcacheStatus.OK) {
                            return client;
                          } else if (status == MemcacheStatus.UNAUTHORIZED) {
                            throw new MemcacheAuthenticationException("Authentication failed");
                          } else {
                            throw new RuntimeException("Unexpected status: " + status.name());
                          }
                        }));
  }

  @Override
  public void validate(final boolean binary) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



folsom/src/main/java/com/spotify/folsom/authenticate/PlaintextAuthenticator.java [48:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    .thenApply(
                        status -> {
                          if (status == MemcacheStatus.OK) {
                            return client;
                          } else if (status == MemcacheStatus.UNAUTHORIZED) {
                            throw new MemcacheAuthenticationException("Authentication failed");
                          } else {
                            throw new RuntimeException("Unexpected status: " + status.name());
                          }
                        }));
  }

  @Override
  public void validate(final boolean binary) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



