We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae1abf6 commit fc0f6b1Copy full SHA for fc0f6b1
python/tests/stress/arcticdb/version_store/test_mem_leaks.py
@@ -607,6 +607,11 @@ def is_relevant(stack: Stack) -> bool:
607
# print(f"SAMPLE >>> {frame.filename}:{frame.function}[{frame.lineno}]")
608
frame_info_str = f"{frame.filename}:{frame.function}:[{frame.lineno}]"
609
610
+ # Check if the frame has unknown information
611
+ if frame.filename == "<unknown>" and frame.function == "<unknown>" and frame.lineno == 0:
612
+ logger.warning(f"Frame excluded : {frame_info_str}")
613
+ return False
614
+
615
if "folly::CPUThreadPoolExecutor::CPUTask" in frame_info_str:
616
logger.warning(f"Frame excluded : {frame_info_str}")
617
logger.warning(f"""Explanation : These are on purpose, and they come from the interaction of
0 commit comments