We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd291ad commit 13bb963Copy full SHA for 13bb963
src/memray/commands/common.py
@@ -81,7 +81,7 @@ def warn_if_not_enough_symbols() -> None:
81
def warn_if_file_is_not_aggregated_and_is_too_big(
82
reader: FileReader, result_path: Path
83
) -> None:
84
- FILE_SIZE_LIMIT = 1e7
+ FILE_SIZE_LIMIT = 10 * 1000 * 1000
85
if (
86
reader.metadata.file_format == FileFormat.ALL_ALLOCATIONS
87
and result_path.stat().st_size > FILE_SIZE_LIMIT
0 commit comments