Skip to content

Commit

Permalink
Dont configure HTTPS in security Vert.X JWT tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvavrik committed Sep 4, 2024
1 parent 30ee7f5 commit 618ea70
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public abstract class AbstractCommonIT {
static DefaultService redis = new DefaultService().withProperty("ALLOW_EMPTY_PASSWORD", "YES");

@QuarkusApplication(certificates = {
@Certificate(format = Certificate.Format.PEM, prefix = VALID_PEM_PREFIX, configureHttpServer = true, useTlsRegistry = false),
@Certificate(format = Certificate.Format.PEM, prefix = INVALID_PEM_PREFIX, configureHttpServer = true, useTlsRegistry = false),
@Certificate(format = Certificate.Format.PEM, prefix = VALID_PEM_PREFIX, useTlsRegistry = false, configureTruststore = true),
@Certificate(format = Certificate.Format.PEM, prefix = INVALID_PEM_PREFIX, useTlsRegistry = false, configureTruststore = true),
})
static RestService app = new RestService()
.withProperty("quarkus.redis.hosts",
Expand Down

0 comments on commit 618ea70

Please sign in to comment.