mirror of https://github.com/apache/druid.git
use getProperty in MSQDurableStorageModule (#13881)
This commit is contained in:
parent
7123681ada
commit
b68180fc44
|
@ -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"));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue