stefan-egli commented on code in PR #1644:
URL: https://github.com/apache/jackrabbit-oak/pull/1644#discussion_r1716441144
##########
oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/VersionGCRecommendations.java:
##########
@@ -428,6 +428,18 @@ public GCResult(boolean ignoreGC, TimeInterval gcScope) {
}
enum GcType {
- RGC, DGC
+ RGC("Revision GC"), // revision GC
+ FGC("Full GC"); // full GC
+
+ private final String name;
+
+ GcType(String name) {
+ this.name = name;
Review Comment:
noticed that this changes a
[log.warn](https://github.com/apache/jackrabbit-oak/blob/19ee59c6f484c272ffbc04e58c8ba254d7c6da9e/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/VersionGCRecommendations.java#L408)
so could influence down-stream automation that greps for the existing string
(RGC vs "Revision GC")
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]