-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to latest Play version - addresses #92
- fixes load generator - fixes issues occurring while generating load - author is happy about load test error rate :)
- Loading branch information
Showing
13 changed files
with
141 additions
and
21 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!-- https://www.playframework.com/documentation/latest/SettingsLogger --> | ||
<configuration> | ||
|
||
<conversionRule | ||
conversionWord="coloredLevel" | ||
converterClass="play.api.libs.logback.ColoredLevel" /> | ||
|
||
<appender | ||
name="STDOUT" | ||
class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%coloredLevel %logger{15} - %message%n%xException{10}</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<appender | ||
name="ASYNCSTDOUT" | ||
class="ch.qos.logback.classic.AsyncAppender"> | ||
<appender-ref ref="STDOUT" /> | ||
</appender> | ||
|
||
<logger | ||
name="play" | ||
level="WARN" /> | ||
|
||
<!-- Off these ones as they are annoying, and anyway we manage configuration | ||
ourselves --> | ||
<logger | ||
name="io.ebean.config.PropertyMapLoader" | ||
level="OFF" /> | ||
<logger | ||
name="io.ebeaninternal.server.core.XmlConfigLoader" | ||
level="OFF" /> | ||
<logger | ||
name="io.ebeaninternal.server.lib.BackgroundThread" | ||
level="OFF" /> | ||
<logger | ||
name="com.gargoylesoftware.htmlunit.javascript" | ||
level="OFF" /> | ||
|
||
<root level="WARN"> | ||
<appender-ref ref="ASYNCSTDOUT" /> | ||
</root> | ||
|
||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
include classpath("application.conf") | ||
|
||
db.default { | ||
driver = "org.postgresql.Driver" | ||
url = "jdbc:postgresql://localhost/translatr?reWriteBatchedInserts=true" | ||
username = translatr | ||
password = translatr | ||
logSql = false | ||
} | ||
|
||
redis.host = localhost | ||
|
||
play.modules { | ||
enabled += modules.NoCacheModule | ||
} | ||
|
||
translatr { | ||
baseUrl = "http://localhost:9000" | ||
} | ||
|
||
pac4j { | ||
cache.timeout = 0s | ||
|
||
clients.keycloak { | ||
host = "sso.repanzar.com" | ||
host = ${?KEYCLOAK_HOST} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters