Skip to content

Commit

Permalink
fix: Tweaked file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
seebeen committed Aug 20, 2023
1 parent 6a497f9 commit a0323db
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 13 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

2 changes: 1 addition & 1 deletion docker-compose.redis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
volume:
nocopy: true
- ".:/mnt/ddev_config"
- "./redis/conf:/etc/redis/conf"
- "./redis:/etc/redis/conf"
command:
- redis-server
- /etc/redis/conf/redis.conf
Expand Down
20 changes: 10 additions & 10 deletions install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ project_files:
- .redisimageBuild/Dockerfile
- commands/redis/redis
- commands/redis/redis-flush
- redis/conf/redis.conf
- redis/conf/advanced.conf
- redis/conf/append.conf
- redis/conf/general.conf
- redis/conf/io.conf
- redis/conf/memory.conf
- redis/conf/network.conf
- redis/conf/security.conf
- redis/conf/snapshots.conf
- redis/redis.conf
- redis/advanced.conf
- redis/append.conf
- redis/general.conf
- redis/io.conf
- redis/memory.conf
- redis/network.conf
- redis/security.conf
- redis/snapshots.conf
- docker-compose.redis.yaml

global_files:
Expand All @@ -24,4 +24,4 @@ post_install_actions:
- |
#ddev-description: Change the redis dump filename
#
sed -i "s/REPLACE_ME/${DDEV_SITENAME}/g" redis/conf/snapshots.conf
sed -i "s/REPLACE_ME/${DDEV_SITENAME}/g" redis/snapshots.conf
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ health_checks() {

# populate 10000 keys
echo '' > keys.txt
for i in {1..10000}; do echo "SET testkey-$i $i" >> keys.txt; done
run bash -c 'for i in {1..10000}; do echo "SET testkey-$i $i" >> keys.txt; done'
run bash -c "cat keys.txt | ddev redis --pipe"
assert_success
assert_line --index 2 "errors: 0, replies: 10000"
Expand Down

0 comments on commit a0323db

Please sign in to comment.