This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new bbb3b06  Allow for possible repeat of INFRA-21658
bbb3b06 is described below

commit bbb3b0685dde6164b75dece5fe12f33d48c8e2ea
Author: Sebb <[email protected]>
AuthorDate: Sun Apr 11 17:30:13 2021 +0100

    Allow for possible repeat of INFRA-21658
---
 www/roster/public_committee_info.rb | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/www/roster/public_committee_info.rb 
b/www/roster/public_committee_info.rb
index b2d0f18..825382c 100644
--- a/www/roster/public_committee_info.rb
+++ b/www/roster/public_committee_info.rb
@@ -161,8 +161,12 @@ if ARGV.length >= 2
   metadata = ASF::Committee.load_committee_metadata[:tlps]
 
   public_lists = Hash.new {|h,k| h[k]=Array.new}
-  ASF::MLIST.list_types do |dom, list, _|
-    public_lists[dom.sub(/\.apache\.org$/, '')] << list
+  begin
+    ASF::MLIST.list_types do |dom, list, _|
+      public_lists[dom.sub(/\.apache\.org$/, '')] << list
+    end
+  rescue => e
+    Wunderbar.error e.inspect
   end
 
   # reformat the data

Reply via email to