-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Redis container from aborting randomly (#405)
* Removed "--maxclients 100000" from Redis containers default CMD * Fix Redis memory overcommit warning by adding Redis configuration options - Added --save "", --appendonly no, and --maxmemory-policy noeviction to Redis startup command - Resolves the vm.overcommit_memory warning without using sysctl * Fix Redis protected mode warning by disabling protected mode Disabled Redis protected mode using the --protected-mode no option to resolve the "Possible SECURITY ATTACK detected" warning during tests. Protected mode is disabled because environments may trigger false positives due to network interactions, causing Redis to exit unexpectedly. This allows Redis to continue running without misinterpreting internal connections as attacks. * Revert "Added docker cleanup auto-fixture to improve tests stability (#396)" This reverts commit acd8010. * Reduced "xdist" and "parallel" tox env reruns from 5 to 3
- Loading branch information
Showing
6 changed files
with
16 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters