Skip to content

Commit

Permalink
Minor fixes while debugging an environmental issue that was resulting…
Browse files Browse the repository at this point in the history
… in test failures
  • Loading branch information
EricWittmann committed Oct 15, 2024
1 parent a8621ff commit 0a9bedd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 34 deletions.
2 changes: 1 addition & 1 deletion app/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ apicurio.import.work-dir=${java.io.tmpdir}

## SQL Storage
apicurio.storage.sql.kind=h2
apicurio.datasource.url=jdbc:h2:mem:${quarkus.uuid}
apicurio.datasource.url=jdbc:h2:mem:db_${quarkus.uuid}
apicurio.datasource.username=sa
apicurio.datasource.password=sa
apicurio.datasource.jdbc.initial-size=20
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ public void testDraftVersionsInCoreV2() throws Exception {
String artifactId = TestUtils.generateArtifactId();

// Create artifact with version as DRAFT
CreateArtifact createArtifact = TestUtils.clientCreateArtifact(artifactId, ArtifactType.AVRO,
content, ContentTypes.APPLICATION_JSON);
CreateArtifact createArtifact = TestUtils.clientCreateArtifact(artifactId, ArtifactType.AVRO, content,
ContentTypes.APPLICATION_JSON);
createArtifact.getFirstVersion().setIsDraft(true);
createArtifact.getFirstVersion().setVersion("1.0");
CreateArtifactResponse car = clientV3.groups().byGroupId(groupId).artifacts().post(createArtifact);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ The following {registry} configuration options are available for each component
|`apicurio.auth.admin-override.user`
|`string`
|`admin`
|`3.0.0.Final`
|`3.0.0`
|Auth admin override user name
|`apicurio.auth.anonymous-read-access.enabled`
|`boolean [dynamic]`
Expand Down Expand Up @@ -530,12 +530,12 @@ The following {registry} configuration options are available for each component
|`apicurio.rest.artifact.download.max-size.bytes`
|`int`
|`1000000`
|`2.2.6-SNAPSHOT`
|`2.2.6`
|Max size of the artifact allowed to be downloaded from URL
|`apicurio.rest.artifact.download.ssl-validation.disabled`
|`boolean`
|`false`
|`2.2.6-SNAPSHOT`
|`2.2.6`
|Skip SSL validation when downloading artifacts from URL
|`apicurio.rest.deletion.artifact-version.enabled`
|`boolean [dynamic]`
Expand Down Expand Up @@ -832,7 +832,7 @@ The following {registry} configuration options are available for each component
|`artifacts.skip.disabled.latest`
|`boolean`
|`true`
|`2.4.2-SNAPSHOT`
|`2.4.2`
|Skip artifact versions with DISABLED state when retrieving latest artifact version
|===

Expand Down

This file was deleted.

0 comments on commit 0a9bedd

Please sign in to comment.