Skip to content

Commit 8f69876

Browse files
committed
Increase the call so that samples are captured
Signed-off-by: Min Lim <min.yeol.lim@intel.com>
1 parent cb0c4d0 commit 8f69876

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/containers/python/lister.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,6 @@ def parser():
4949
Thread(target=parser).start()
5050
lister = Lister()
5151
while True:
52-
lister.lister()
52+
# Call multiple times per iteration to increase chance of being sampled by profilers
53+
for _ in range(10):
54+
lister.lister()

0 commit comments

Comments
 (0)