Skip to content

Commit 0a9bedd

Browse files
committed
Minor fixes while debugging an environmental issue that was resulting in test failures
1 parent a8621ff commit 0a9bedd

File tree

4 files changed

+7
-34
lines changed

4 files changed

+7
-34
lines changed

app/src/main/resources/application.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ apicurio.import.work-dir=${java.io.tmpdir}
160160

161161
## SQL Storage
162162
apicurio.storage.sql.kind=h2
163-
apicurio.datasource.url=jdbc:h2:mem:${quarkus.uuid}
163+
apicurio.datasource.url=jdbc:h2:mem:db_${quarkus.uuid}
164164
apicurio.datasource.username=sa
165165
apicurio.datasource.password=sa
166166
apicurio.datasource.jdbc.initial-size=20

app/src/test/java/io/apicurio/registry/noprofile/rest/v3/DraftContentTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,8 @@ public void testDraftVersionsInCoreV2() throws Exception {
436436
String artifactId = TestUtils.generateArtifactId();
437437

438438
// Create artifact with version as DRAFT
439-
CreateArtifact createArtifact = TestUtils.clientCreateArtifact(artifactId, ArtifactType.AVRO,
440-
content, ContentTypes.APPLICATION_JSON);
439+
CreateArtifact createArtifact = TestUtils.clientCreateArtifact(artifactId, ArtifactType.AVRO, content,
440+
ContentTypes.APPLICATION_JSON);
441441
createArtifact.getFirstVersion().setIsDraft(true);
442442
createArtifact.getFirstVersion().setVersion("1.0");
443443
CreateArtifactResponse car = clientV3.groups().byGroupId(groupId).artifacts().post(createArtifact);

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The following {registry} configuration options are available for each component
7171
|`apicurio.auth.admin-override.user`
7272
|`string`
7373
|`admin`
74-
|`3.0.0.Final`
74+
|`3.0.0`
7575
|Auth admin override user name
7676
|`apicurio.auth.anonymous-read-access.enabled`
7777
|`boolean [dynamic]`
@@ -530,12 +530,12 @@ The following {registry} configuration options are available for each component
530530
|`apicurio.rest.artifact.download.max-size.bytes`
531531
|`int`
532532
|`1000000`
533-
|`2.2.6-SNAPSHOT`
533+
|`2.2.6`
534534
|Max size of the artifact allowed to be downloaded from URL
535535
|`apicurio.rest.artifact.download.ssl-validation.disabled`
536536
|`boolean`
537537
|`false`
538-
|`2.2.6-SNAPSHOT`
538+
|`2.2.6`
539539
|Skip SSL validation when downloading artifacts from URL
540540
|`apicurio.rest.deletion.artifact-version.enabled`
541541
|`boolean [dynamic]`
@@ -832,7 +832,7 @@ The following {registry} configuration options are available for each component
832832
|`artifacts.skip.disabled.latest`
833833
|`boolean`
834834
|`true`
835-
|`2.4.2-SNAPSHOT`
835+
|`2.4.2`
836836
|Skip artifact versions with DISABLED state when retrieving latest artifact version
837837
|===
838838

utils/tests/src/main/java/io/apicurio/registry/utils/tests/KafkasqlRecoverFromSnapshotTestProfile.java

-27
This file was deleted.

0 commit comments

Comments
 (0)