[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 00:58:08 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 7fad1fc28bbd462c459000ae3fbcba266f904827
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 8 02:22:18 2010 +0000

    2010-01-07  Eric Seidel  <eric at 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.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52965 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 6f97cf7..d5f5c2b 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,13 @@
+2010-01-07  Eric Seidel  <eric at 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.
+
 2010-01-07  Mark Rowe  <mrowe at apple.com>
 
         Reviewed by Jon Honeycutt.
diff --git a/WebKitTools/Scripts/webkitpy/commands/queues.py b/WebKitTools/Scripts/webkitpy/commands/queues.py
index 7a9c580..921fdb3 100644
--- a/WebKitTools/Scripts/webkitpy/commands/queues.py
+++ b/WebKitTools/Scripts/webkitpy/commands/queues.py
@@ -28,6 +28,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+import traceback
 import os
 
 from datetime import datetime
@@ -62,7 +63,8 @@ class AbstractQueue(Command, QueueEngineDelegate):
         try:
             self.tool.bugs.add_cc_to_bug(bug_id, self.watchers)
         except Exception, e:
-            log("Failed to CC watchers: %s." % e)
+            traceback.print_exc()
+            log("Failed to CC watchers.")
 
     def _update_status(self, message, patch=None, results_file=None):
         self.tool.status_server.update_status(self.name, message, patch, results_file)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list