refactor: rename inline_resource_storage_below_size to binary_storage_minimum_binary_size in AppProperties and application.yaml
This commit is contained in:
@@ -69,7 +69,7 @@ public class AppProperties {
|
||||
|
||||
private BinaryStorageMode binary_storage_mode = BinaryStorageMode.DATABASE;
|
||||
private String binary_storage_filesystem_base_directory;
|
||||
private Integer inline_resource_storage_below_size;
|
||||
private Integer binary_storage_minimum_binary_size;
|
||||
private Boolean bulk_export_enabled = false;
|
||||
private Boolean bulk_import_enabled = false;
|
||||
private Boolean default_pretty_print = true;
|
||||
@@ -511,12 +511,12 @@ public class AppProperties {
|
||||
this.binary_storage_filesystem_base_directory = binary_storage_filesystem_base_directory;
|
||||
}
|
||||
|
||||
public Integer getInline_resource_storage_below_size() {
|
||||
return inline_resource_storage_below_size;
|
||||
public Integer getBinary_storage_minimum_binary_size() {
|
||||
return binary_storage_minimum_binary_size;
|
||||
}
|
||||
|
||||
public void setInline_resource_storage_below_size(Integer inline_resource_storage_below_size) {
|
||||
this.inline_resource_storage_below_size = inline_resource_storage_below_size;
|
||||
public void setBinary_storage_minimum_binary_size(Integer binary_storage_minimum_binary_size) {
|
||||
this.binary_storage_minimum_binary_size = binary_storage_minimum_binary_size;
|
||||
}
|
||||
|
||||
public Boolean getBulk_export_enabled() {
|
||||
|
||||
Reference in New Issue
Block a user