This is an automated email from the ASF dual-hosted git repository.
cschneider pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-core.git
The following commit(s) were added to refs/heads/master by this push:
new 08ae5df2 SLING-12223 - Fix config metadata for webconsole
08ae5df2 is described below
commit 08ae5df2b824c27acdc6b16f1b42a90efcd25f78
Author: Christian Schneider <[email protected]>
AuthorDate: Tue Jan 9 09:45:54 2024 +0100
SLING-12223 - Fix config metadata for webconsole
---
.../impl/vlt/VaultDistributionPackageBuilderFactory.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/src/main/java/org/apache/sling/distribution/serialization/impl/vlt/VaultDistributionPackageBuilderFactory.java
b/src/main/java/org/apache/sling/distribution/serialization/impl/vlt/VaultDistributionPackageBuilderFactory.java
index 2caa121e..6ce20390 100644
---
a/src/main/java/org/apache/sling/distribution/serialization/impl/vlt/VaultDistributionPackageBuilderFactory.java
+++
b/src/main/java/org/apache/sling/distribution/serialization/impl/vlt/VaultDistributionPackageBuilderFactory.java
@@ -125,10 +125,10 @@ public class VaultDistributionPackageBuilderFactory
implements DistributionPacka
name = "The memory unit for the file threshold",
description = "The memory unit for the file threshold,
Megabytes by default",
options = {
- @Option(label = "BYTES", value = "Bytes"),
- @Option(label = "KILO_BYTES", value = "Kilobytes"),
- @Option(label = "MEGA_BYTES", value = "Megabytes"),
- @Option(label = "GIGA_BYTES", value = "Gigabytes")
+ @Option(label = "Bytes", value = "BYTES"),
+ @Option(label = "Kilobytes", value = "KILO_BYTES"),
+ @Option(label = "Megabytes", value = "MEGA_BYTES"),
+ @Option(label = "Gigabytes", value = "GIGA_BYTES")
})
String MEGA_BYTES() default DEFAULT_MEMORY_UNIT;