Skip to content

Commit 08f06bf

Browse files
smccarthy-iejsenko
authored andcommitted
docs: fix config props with no category or wrong category
1 parent 935c360 commit 08f06bf

File tree

4 files changed

+13
-35
lines changed

4 files changed

+13
-35
lines changed

app/src/main/java/io/apicurio/registry/storage/RegistryStorageProducer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class RegistryStorageProducer {
2929
Instance<RegistryStorageDecorator> decorators;
3030

3131
@ConfigProperty(name = "registry.storage.kind")
32-
@Info
32+
@Info(category = "storage", description = "Application storage variant, for example, sql, kafkasql, or gitops", availableSince = "3.0.0.Final")
3333
String registryStorageType;
3434

3535
private RegistryStorage cachedCurrent;

app/src/main/java/io/apicurio/registry/storage/StorageBehaviorProperties.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
public class StorageBehaviorProperties {
1111

1212
@ConfigProperty(name = "artifacts.skip.disabled.latest", defaultValue = "true")
13-
@Info(category = "store", description = "Skip artifact versions with DISABLED state when retrieving latest artifact version", availableSince = "2.4.2-SNAPSHOT")
13+
@Info(category = "storage", description = "Skip artifact versions with DISABLED state when retrieving latest artifact version", availableSince = "2.4.2-SNAPSHOT")
1414
boolean skipLatestDisabledArtifacts;
1515

1616
public ArtifactRetrievalBehavior getDefaultArtifactRetrievalBehavior() {

app/src/main/java/io/apicurio/registry/storage/impl/gitops/GitOpsRegistryStorage.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class GitOpsRegistryStorage extends AbstractReadOnlyRegistryStorage {
5353
GitManager gitManager;
5454

5555
@ConfigProperty(name = "registry.storage.kind")
56-
@Info
56+
@Info(category = "storage", description = "Application storage variant, for example, sql, kafkasql, or gitops", availableSince = "3.0.0.Final")
5757
String registryStorageType;
5858

5959
// Fair lock, so we ensure the writer does not wait indefinitely under high throughput.

docs/modules/ROOT/partials/getting-started/ref-registry-all-configs.adoc

+10-32
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,6 @@
33

44
The following {registry} configuration options are available for each component category:
55

6-
==
7-
. configuration options
8-
[.table-expandable,width="100%",cols="6,3,2,3,5",options="header"]
9-
|===
10-
|Name
11-
|Type
12-
|Default
13-
|Available from
14-
|Description
15-
|`registry.storage.kind`
16-
|`string`
17-
|
18-
|
19-
|
20-
|===
21-
226
== api
237
.api configuration options
248
[.table-expandable,width="100%",cols="6,3,2,3,5",options="header"]
@@ -571,6 +555,11 @@ The following {registry} configuration options are available for each component
571555
|Default
572556
|Available from
573557
|Description
558+
|`artifacts.skip.disabled.latest`
559+
|`boolean`
560+
|`true`
561+
|`2.4.2-SNAPSHOT`
562+
|Skip artifact versions with DISABLED state when retrieving latest artifact version
574563
|`registry.datasource.blue.db-kind`
575564
|`string`
576565
|`h2`
@@ -776,29 +765,18 @@ The following {registry} configuration options are available for each component
776765
|`h2`
777766
|`3.0.0.Final`
778767
|Application datasource database type
768+
|`registry.storage.kind`
769+
|`string`
770+
|
771+
|`3.0.0.Final`
772+
|Application storage variant, for example, sql, kafkasql, or gitops
779773
|`registry.storage.read-only`
780774
|`boolean [dynamic]`
781775
|`false`
782776
|`2.5.0.Final`
783777
|Enable Registry storage read-only mode
784778
|===
785779

786-
== store
787-
.store configuration options
788-
[.table-expandable,width="100%",cols="6,3,2,3,5",options="header"]
789-
|===
790-
|Name
791-
|Type
792-
|Default
793-
|Available from
794-
|Description
795-
|`artifacts.skip.disabled.latest`
796-
|`boolean`
797-
|`true`
798-
|`2.4.2-SNAPSHOT`
799-
|Skip artifact versions with DISABLED state when retrieving latest artifact version
800-
|===
801-
802780
== ui
803781
.ui configuration options
804782
[.table-expandable,width="100%",cols="6,3,2,3,5",options="header"]

0 commit comments

Comments
 (0)