mirror of
https://github.com/Athou/commafeed.git
synced 2026-09-22 12:04:16 +00:00
reduce log verbosity during tests
This commit is contained in:
@@ -3,7 +3,6 @@ quarkus.http.port=8082
|
||||
quarkus.http.test-port=8085
|
||||
quarkus.http.enable-compression=true
|
||||
quarkus.http.enable-decompression=true
|
||||
|
||||
# http cache
|
||||
quarkus.http.static-resources.max-age=P365d
|
||||
## make sure the webapp is always up to date
|
||||
@@ -15,7 +14,6 @@ quarkus.http.filter.openapi.matches=/openapi
|
||||
## make sure /next always redirects to the next unread entry
|
||||
quarkus.http.filter.next.header."Cache-Control"=no-cache
|
||||
quarkus.http.filter.next.matches=/next
|
||||
|
||||
# security
|
||||
quarkus.http.auth.basic=true
|
||||
quarkus.http.auth.form.enabled=true
|
||||
@@ -25,40 +23,31 @@ quarkus.http.auth.form.cookie-max-age=P30d
|
||||
quarkus.http.auth.form.landing-page=
|
||||
quarkus.http.auth.form.login-page=
|
||||
quarkus.http.auth.form.error-page=
|
||||
|
||||
# websocket
|
||||
quarkus.websocket.dispatch-to-worker=true
|
||||
|
||||
# database
|
||||
quarkus.liquibase.change-log=migrations.xml
|
||||
quarkus.liquibase.migrate-at-start=true
|
||||
|
||||
# openapi
|
||||
quarkus.smallrye-openapi.path=/openapi
|
||||
quarkus.swagger-ui.path=/api-documentation
|
||||
quarkus.swagger-ui.always-include=true
|
||||
|
||||
# shutdown
|
||||
quarkus.shutdown.timeout=5s
|
||||
|
||||
# native
|
||||
quarkus.native.march=compatibility
|
||||
quarkus.native.add-all-charsets=true
|
||||
# fix for https://github.com/Athou/commafeed/issues/1795
|
||||
quarkus.native.additional-build-args=-H:PageSize=65536
|
||||
|
||||
|
||||
# dev profile overrides
|
||||
%dev.quarkus.http.port=8083
|
||||
%dev.quarkus.http.auth.session.encryption-key=123456789012345678901234567890
|
||||
%dev.quarkus.log.category."com.commafeed".level=DEBUG
|
||||
# %dev.quarkus.hibernate-orm.log.sql=true
|
||||
%dev.commafeed.users.create-demo-account=true
|
||||
|
||||
|
||||
# test profile overrides
|
||||
%test.quarkus.log.category."org.mockserver".level=WARN
|
||||
%test.quarkus.log.category."liquibase".level=WARN
|
||||
%test.quarkus.log.level=WARN
|
||||
%test.quarkus.log.category."org.mockserver".level=ERROR
|
||||
%test.commafeed.shutdown-timeout=10ms
|
||||
%test.commafeed.users.create-demo-account=true
|
||||
%test.commafeed.users.allow-registrations=true
|
||||
@@ -69,7 +58,6 @@ quarkus.native.additional-build-args=-H:PageSize=65536
|
||||
%test.commafeed.feed-refresh.force-refresh-cooldown-duration=1m
|
||||
## GitHub actions runners are very slow, we need to increase this timeout to avoid intermittent test failures
|
||||
%test.commafeed.feed-refresh.filtering-expression-evaluation-timeout=5s
|
||||
|
||||
# prod profile overrides
|
||||
%prod.quarkus.datasource.jdbc.url=jdbc:h2:./data/db;DEFRAG_ALWAYS=TRUE
|
||||
%prod.quarkus.datasource.username=sa
|
||||
|
||||
Reference in New Issue
Block a user