Skip to content

Commit

Permalink
fix(docker redis): fix typo in docker-compose PE-4924
Browse files Browse the repository at this point in the history
There was an extra character in the default value for
REDIS_CACHE_TTL_SECONDS.
  • Loading branch information
djwhitt committed Nov 17, 2023
1 parent 3e32dd7 commit 0fd341b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ services:
- CONTRACT_ID=${CONTRACT_ID:-}
- CHAIN_CACHE_TYPE=${CHAIN_CACHE_TYPE:-redis}
- REDIS_CACHE_URL=${REDIS_CACHE_URL:-redis://redis:6379}
- REDIS_CACHE_TTL_SECONDS=${REDIS_CACHE_TTL_SECONDS:-r}
- REDIS_CACHE_TTL_SECONDS=${REDIS_CACHE_TTL_SECONDS:-}
depends_on:
- redis

Expand Down

0 comments on commit 0fd341b

Please sign in to comment.