Changeset 52965 in webkit


Ignore:
Timestamp:
Jan 7, 2010 6:22:18 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-07 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

commit-queue is stuck spinning due to exception
https://bugs.webkit.org/show_bug.cgi?id=33358

  • Scripts/webkitpy/commands/queues.py:
    • Don't try to stringify the exception.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52954 r52965  
     12010-01-07  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        commit-queue is stuck spinning due to exception
     6        https://bugs.webkit.org/show_bug.cgi?id=33358
     7
     8        * Scripts/webkitpy/commands/queues.py:
     9         - Don't try to stringify the exception.
     10
    1112010-01-07  Mark Rowe  <mrowe@apple.com>
    212
  • trunk/WebKitTools/Scripts/webkitpy/commands/queues.py

    r52907 r52965  
    2929# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    3030
     31import traceback
    3132import os
    3233
     
    6364            self.tool.bugs.add_cc_to_bug(bug_id, self.watchers)
    6465        except Exception, e:
    65             log("Failed to CC watchers: %s." % e)
     66            traceback.print_exc()
     67            log("Failed to CC watchers.")
    6668
    6769    def _update_status(self, message, patch=None, results_file=None):
Note: See TracChangeset for help on using the changeset viewer.