use getProperty in MSQDurableStorageModule (#13881)

This commit is contained in:
Nicholas Lippis 2023-03-04 14:56:43 -05:00 committed by GitHub
parent 7123681ada
commit b68180fc44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -103,6 +103,6 @@ public class MSQDurableStorageModule implements DruidModule
private boolean isDurableShuffleStorageEnabled()
{
return Boolean.parseBoolean((String) properties.getOrDefault(MSQ_INTERMEDIATE_STORAGE_ENABLED, "false"));
return Boolean.parseBoolean(properties.getProperty(MSQ_INTERMEDIATE_STORAGE_ENABLED, "false"));
}
}