Skip to content

Commit

Permalink
Merge pull request #1972 from apache/juerg/fix-casd-test
Browse files Browse the repository at this point in the history
tests/testutils/casd.py: Set cache quota
  • Loading branch information
juergbi authored Nov 25, 2024
2 parents 0e7f8e4 + 94f4c92 commit 2ae43ea
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/testutils/casd.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@
@contextmanager
def casd_cache(path, messenger=None):
casd = CASDProcessManager(
str(path), os.path.join(str(path), "..", "logs", "_casd"), CASLogLevel.WARNING, None, None, True, None
str(path),
os.path.join(str(path), "..", "logs", "_casd"),
CASLogLevel.WARNING,
16 * 1024 * 1024,
None,
True,
None,
)
try:
cascache = CASCache(str(path), casd=casd)
Expand Down

0 comments on commit 2ae43ea

Please sign in to comment.