Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions api/src/main/resources/config/application-test.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# This property was added to suppress ElasticSearch RestClient warnings after upgrading
# ElasticSearch to 7.16.2 for log4j vulnerabilities. We would expect this property to be
# removed after upgrading Spring Boot and associated API dependencies.
logging.level.org.elasticsearch.client.RestClient=DEBUG
logging.level.org.elasticsearch.client.RestClient=INFO

spring.flyway.enabled=true

Expand Down
1 change: 1 addition & 0 deletions api/src/test/kotlin/edu/wgu/osmt/BaseDockerizedTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ object Containers {
withExposedPorts(9200, 9300)
withEnv("discovery.type","single-node")
withEnv("net","host")
withEnv("xpack.security.enabled","false")
start()
println("Elasticsearch port: ${getMappedPort(9200)}")
}
Expand Down