Skip to content

Commit

Permalink
Merge pull request #767 from biothings/cache-clear
Browse files Browse the repository at this point in the history
Fix redis cluster task/launch
  • Loading branch information
tokebe authored Dec 13, 2023
2 parents e5462bf + 4394c79 commit d949bbe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
"restart": false,
"env": {
"REDIS_HOST": "localhost",
"REDIS_PORT": "6379",
"REDIS_PORT": "9000",
"DEBUG": "biomedical-id-resolver,bte*",
"SMARTAPI_SYNC": "false",
"RESULT_CACHING": "true",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"label": "start redis cluster",
"type": "shell",
"dependsOn": ["stop redis"],
"command": "docker run -e 'IP=0.0.0.0' -p 6379-6384:6379-6384 -e INITIAL_PORT=6379 -d --name test-redis-cluster grokzen/redis-cluster:6.2.8",
"command": "docker run -e 'IP=0.0.0.0' -p 9000-9005:9000-9005 -e 'INITIAL_PORT=9000' -d --name test-redis-cluster grokzen/redis-cluster:6.2.11",
"presentation": {
"echo": true,
"reveal": "never",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"setup": "pnpm run clone && pnpm i",
"clone": "./scripts/clone_packages.sh",
"pull": "pnpm run git pull",
"status": "pnpm run git status",
"git": "./scripts/run_git_packages.sh",
"ggit": "pnpm -r --no-bail exec git",
"build": "turbo run build",
Expand Down

0 comments on commit d949bbe

Please sign in to comment.