We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb0c4d0 commit 8f69876Copy full SHA for 8f69876
1 file changed
tests/containers/python/lister.py
@@ -49,4 +49,6 @@ def parser():
49
Thread(target=parser).start()
50
lister = Lister()
51
while True:
52
- lister.lister()
+ # Call multiple times per iteration to increase chance of being sampled by profilers
53
+ for _ in range(10):
54
+ lister.lister()
0 commit comments