Skip to content

Commit 0280f65

Browse files
feat: change redis to rejson
1 parent 13fc390 commit 0280f65

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
services:
1717
redis:
18-
image: redislabs/redismod:latest
18+
image: redislabs/rejson:latest
1919
ports:
2020
- 6379:6379
2121
options: >-

Diff for: docker-compose.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@ version: "3.8"
22

33
services:
44
redis:
5-
image: redislabs/redismod:latest
5+
image: redislabs/rejson:latest
66
ports:
77
- "6379:6379"
8-
volumes:
9-
- ./config/redis.conf:/usr/local/etc/redis/redis.conf
10-
command: /usr/local/etc/redis/redis.conf
118

129
mariadb:
1310
image: mariadb:10.11.5

Diff for: test/setup.ts

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ before(async () => {
2828
chai.use(await chaiOas({ specPath: path.join(fileURLToPath(new URL('.', import.meta.url)), '../public/v1/spec.yaml') }));
2929

3030
const redisClient = await initRedisClient();
31+
const list = await redisClient.moduleList();
32+
console.log('list', list);
3133
await redisClient.flushDb();
3234
const persistentRedisClient = await initPersistentRedisClient();
3335
await persistentRedisClient.flushDb();

0 commit comments

Comments
 (0)