We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b585b8 commit f4709b1Copy full SHA for f4709b1
mitogen/profiler.py
@@ -72,13 +72,13 @@ def try_merge(stats, path):
72
stats.add(path)
73
return True
74
except Exception as e:
75
- print('Failed. Race? Will retry. %s' % (e,))
+ print('%s failed. Will retry. %s' % (path, e))
76
return False
77
78
79
def merge_stats(outpath, inpaths):
80
first, rest = inpaths[0], inpaths[1:]
81
- for x in range(5):
+ for x in range(1):
82
try:
83
stats = pstats.Stats(first)
84
except EOFError:
0 commit comments