We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfdf6bd commit d588bb9Copy full SHA for d588bb9
judges/find-all-issues/find-all-issues.rb
@@ -30,7 +30,6 @@
30
require 'fbe/who'
31
require 'fbe/issue'
32
33
-start = Time.now
34
Fbe.iterate do
35
as 'min-issue-was-found'
36
by "(agg (and (eq where 'github') (eq repository $repository) (eq what 'issue-was-opened')) (min issue))"
@@ -42,10 +41,6 @@
42
41
rescue Octokit::NotFound
43
next 0
44
end
45
- if Time.now - start > 2 * 60
46
- $loog.info("We are doing this for #{start.ago} already, won't check #{repo}")
47
- next issue
48
- end
49
total = 0
50
before = Time.now
51
Fbe.octo.search_issues("repo:#{repo} type:issue created:<=#{after.iso8601[0..9]}")[:items].each do |json|
0 commit comments