Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bot/brain.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def request_status(m, job)

def show_pending(m)
if redis.llen('pending') > 10
privmsg(m, "Too many pending jobs to reply to !pending, please use the dashboard instead.")
privmsg(m, 'Too many pending jobs to reply to !pending, please use the dashboard instead. http://archivebot.com/pending')
return
end

Expand All @@ -194,6 +194,7 @@ def show_pending(m)

privmsg(m, msg)
end
privmsg(m, 'Other pending queues: http://archivebot.com/pending')
end

def add_note(m, job, note, need_auth=true)
Expand Down