refactor: rename inline_resource_storage_below_size to binary_storage_minimum_binary_size in AppProperties and application.yaml

This commit is contained in:
Patrick Werner
2026-02-16 11:59:08 +01:00
parent a1fc68b4f0
commit 7d482e30c9
2 changed files with 9 additions and 9 deletions

View File

@@ -69,7 +69,7 @@ public class AppProperties {
private BinaryStorageMode binary_storage_mode = BinaryStorageMode.DATABASE; private BinaryStorageMode binary_storage_mode = BinaryStorageMode.DATABASE;
private String binary_storage_filesystem_base_directory; 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_export_enabled = false;
private Boolean bulk_import_enabled = false; private Boolean bulk_import_enabled = false;
private Boolean default_pretty_print = true; private Boolean default_pretty_print = true;
@@ -511,12 +511,12 @@ public class AppProperties {
this.binary_storage_filesystem_base_directory = binary_storage_filesystem_base_directory; this.binary_storage_filesystem_base_directory = binary_storage_filesystem_base_directory;
} }
public Integer getInline_resource_storage_below_size() { public Integer getBinary_storage_minimum_binary_size() {
return inline_resource_storage_below_size; return binary_storage_minimum_binary_size;
} }
public void setInline_resource_storage_below_size(Integer inline_resource_storage_below_size) { public void setBinary_storage_minimum_binary_size(Integer binary_storage_minimum_binary_size) {
this.inline_resource_storage_below_size = inline_resource_storage_below_size; this.binary_storage_minimum_binary_size = binary_storage_minimum_binary_size;
} }
public Boolean getBulk_export_enabled() { public Boolean getBulk_export_enabled() {

View File

@@ -424,12 +424,12 @@ hapi:
# validation: # validation:
# requests_enabled: true # requests_enabled: true
# responses_enabled: true # responses_enabled: true
# binary_storage_enabled: true binary_storage_enabled: true
# binary_storage_mode: FILESYSTEM binary_storage_mode: FILESYSTEM
# binary_storage_filesystem_base_directory: /binstore binary_storage_filesystem_base_directory: /binstore
# When binary_storage_mode is FILESYSTEM and this value is not set, # When binary_storage_mode is FILESYSTEM and this value is not set,
# the starter defaults to 102400 bytes so smaller binaries stay inline. # the starter defaults to 102400 bytes so smaller binaries stay inline.
inline_resource_storage_below_size: 4000 binary_storage_minimum_binary_size: 4000
# ------------------------------------------------------------------------------- # -------------------------------------------------------------------------------
# P. Remote Terminology Service (disabled by default) # P. Remote Terminology Service (disabled by default)