Title: [205149] trunk/Tools
Revision
205149
Author
aakash_j...@apple.com
Date
2016-08-29 14:51:35 -0700 (Mon, 29 Aug 2016)

Log Message

EWS should indicate which bot processed the patch
https://bugs.webkit.org/show_bug.cgi?id=161222

Reviewed by Alexey Proskuryakov.

* QueueStatusServer/handlers/statusbubble.py:
(StatusBubble._build_bubble): Remove the bot id from bubbles as it is confusing.
bot ids are now displayed in patch status page.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (205148 => 205149)


--- trunk/Tools/ChangeLog	2016-08-29 21:35:20 UTC (rev 205148)
+++ trunk/Tools/ChangeLog	2016-08-29 21:51:35 UTC (rev 205149)
@@ -1,3 +1,14 @@
+2016-08-29  Aakash Jain  <aakash_j...@apple.com>
+
+        EWS should indicate which bot processed the patch
+        https://bugs.webkit.org/show_bug.cgi?id=161222
+
+        Reviewed by Alexey Proskuryakov.
+
+        * QueueStatusServer/handlers/statusbubble.py:
+        (StatusBubble._build_bubble): Remove the bot id from bubbles as it is confusing.
+        bot ids are now displayed in patch status page.
+
 2016-08-29  Alex Christensen  <achristen...@webkit.org>
 
         URLParser should parse about:blank

Modified: trunk/Tools/QueueStatusServer/handlers/statusbubble.py (205148 => 205149)


--- trunk/Tools/QueueStatusServer/handlers/statusbubble.py	2016-08-29 21:35:20 UTC (rev 205148)
+++ trunk/Tools/QueueStatusServer/handlers/statusbubble.py	2016-08-29 21:51:35 UTC (rev 205149)
@@ -132,7 +132,7 @@
                 statuses))
             if not latest_resultative_status:
                 bubble["state"] = "started"
-                bubble["details_message"] = (statuses[0].bot_id + ", recent messages:\n\n"
+                bubble["details_message"] = ("Recent messages:\n\n"
                     + "\n".join([status.message for status in statuses]) + "\n\n" + self._iso_time(statuses[0].date))
             elif statuses[0].message == "Pass":
                 bubble["state"] = "pass"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to