Skip to content
Merged
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 @@ -64,11 +64,11 @@ public ByteBuffer unwrapKey(ByteBuffer wrappedKey, String wrappingKeyId) {
public void initialize(Map<String, String> properties) {
String keystorePath = properties.get(KEYSTORE_FILE_PATH_PROP);
Preconditions.checkNotNull(
keystorePath, KEYSTORE_FILE_PATH_PROP + " must be set in hadoop or table " + "properties");
keystorePath, KEYSTORE_FILE_PATH_PROP + " must be set in hadoop or table properties");

String keystorePassword = System.getenv(KEYSTORE_PASSWORD_ENV_VAR);
Preconditions.checkNotNull(
keystorePassword, KEYSTORE_PASSWORD_ENV_VAR + " environment variable " + "must be set");
keystorePassword, KEYSTORE_PASSWORD_ENV_VAR + " environment variable must be set");

KeyStore keyStore;
try {
Expand Down