Skip to content

Commit

Permalink
Changed redis address to redis iso localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
erwin-kok committed Aug 18, 2023
1 parent 10eb5f4 commit d519ce6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fun main() {
val muxer = System.getenv("muxer") ?: "mplex"
val isDialerString = System.getenv("is_dialer") ?: "true"
val ip = System.getenv("ip") ?: "0.0.0.0"
val redisAddr = System.getenv("redis_addr") ?: "localhost:6379"
val redisAddr = System.getenv("redis_addr") ?: "redis:6379"
val testTimeoutSeconds = System.getenv("test_timeout_seconds")

val testTimeout = if (testTimeoutSeconds != null) {
Expand Down

0 comments on commit d519ce6

Please sign in to comment.