Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: prepare for leaderboards #123

Merged
merged 20 commits into from
Jul 3, 2024
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
chore: test why verify on native windows does not work
DarkAtra committed Jul 3, 2024
commit b316833828c56115161328a1e68613293a24adf2
1 change: 0 additions & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,6 @@ logging:
level:
root: info
com.ibasco.agql: warn
org.dizitart.no2: debug
pattern:
console: "%clr(%d{yyyy-MM-dd'T'HH:mm:ss.SSSXXX}){faint} %clr(%5p) %clr(${PID:-}){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m %mdc%n%wEx"

Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package de.darkatra.vrising.discord.persistence

import ch.qos.logback.classic.Logger
import de.darkatra.vrising.discord.DatabaseConfigurationTestUtils
import de.darkatra.vrising.discord.persistence.model.ServerTestUtils
import org.assertj.core.api.Assertions.assertThat
@@ -8,6 +9,7 @@ import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.assertThrows
import org.junit.jupiter.api.condition.DisabledInNativeImage
import org.slf4j.LoggerFactory

@DisabledInNativeImage
class ServerRepositoryTest {
@@ -86,6 +88,9 @@ class ServerRepositoryTest {
@Test
fun `should not update server status monitor with higher version`() {

val logger = LoggerFactory.getLogger("nitrite") as Logger
logger.level = ch.qos.logback.classic.Level.DEBUG

val server = ServerTestUtils.getServer()
serverRepository.addServer(server)