Skip to content

Commit

Permalink
Fix: DragonflyDB error during note import
Browse files Browse the repository at this point in the history
Production環境はこれをPushしても治らないので注意
  • Loading branch information
kanarikanaru committed Aug 13, 2024
1 parent 289da88 commit bbddc04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
redis:
restart: unless-stopped
image: 'docker.dragonflydb.io/dragonflydb/dragonfly'
command: ['--default_lua_flags=allow-undeclared-keys,disable-atomicity']
command: ['--default_lua_flags=allow-undeclared-keys','--lock_on_hashtags']
networks:
- internal_network
ulimits:
Expand Down
2 changes: 1 addition & 1 deletion compose.local-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
image: 'docker.dragonflydb.io/dragonflydb/dragonfly'
ports:
- "6379:6379"
command: ['--default_lua_flags=allow-undeclared-keys,disable-atomicity']
command: ['--default_lua_flags=allow-undeclared-keys','--lock_on_hashtags']
ulimits:
memlock: -1
volumes:
Expand Down
2 changes: 1 addition & 1 deletion compose_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
redis:
restart: always
image: 'docker.dragonflydb.io/dragonflydb/dragonfly'
command: ['--default_lua_flags=allow-undeclared-keys,disable-atomicity']
command: ['--default_lua_flags=allow-undeclared-keys','--lock_on_hashtags']
networks:
- internal_network
ulimits:
Expand Down

0 comments on commit bbddc04

Please sign in to comment.