1
0

[HUDI-3736] Fix default dynamodblock url default value (#4967)

This commit is contained in:
Nicolas Paris
2022-03-29 05:31:46 +02:00
committed by GitHub
parent 8f8a8158e2
commit 7c7ecb11d5

View File

@@ -103,8 +103,8 @@ public class DynamoDbBasedLockConfig extends HoodieConfig {
public static final ConfigProperty<String> DYNAMODB_ENDPOINT_URL = ConfigProperty
.key(DYNAMODB_BASED_LOCK_PROPERTY_PREFIX + "endpoint_url")
.defaultValue("us-east-1")
.sinceVersion("0.11.0")
.noDefaultValue()
.sinceVersion("0.10.1")
.withDocumentation("For DynamoDB based lock provider, the url endpoint used for Amazon DynamoDB service."
+ " Useful for development with a local dynamodb instance.");
}