File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,12 @@ def check_all_benchy():
72
72
('lucenebench/sparseResults' , 16 ),
73
73
('lucenebench/checkIndexTime' , 1 ),
74
74
('lucenebench/github_pr_counts' , 1 )):
75
-
75
+
76
+ t0 = time .time ()
77
+ print (f'now check { name } , expected_count={ expected_count } ' )
76
78
max_age , count = check_one_benchy_page (name , expected_count )
77
79
ages .append (f'{ max_age .total_seconds ()/ 3600 :.2f} ' )
80
+ print (f' took { time .time ()- t0 :.2f} sec; age { max_age .total_seconds ():.2f} sec' )
78
81
total_count += count
79
82
return ', ' .join (ages ), total_count
80
83
@@ -110,7 +113,7 @@ def application(environ, start_response):
110
113
elif what == 'lucene-benchmarks' :
111
114
age = time .time () - status_lucene_benchmarks [1 ]
112
115
113
- if age > 60 :
116
+ if age > 900 :
114
117
# background status thread died!
115
118
http_status = f'500 Thread died { age :.2f} seconds ago'
116
119
else :
You can’t perform that action at this time.
0 commit comments