Title: [240154] trunk/Tools
Revision
240154
Author
aakash_j...@apple.com
Date
2019-01-18 10:14:08 -0800 (Fri, 18 Jan 2019)

Log Message

[ews-app] Send patch author as a build property
https://bugs.webkit.org/show_bug.cgi?id=193560

Reviewed by Lucas Forschler.

* BuildSlaveSupport/ews-app/ews/fetcher.py:
(BugzillaPatchFetcher.fetch):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-app/ews/fetcher.py (240153 => 240154)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews/fetcher.py	2019-01-18 17:54:52 UTC (rev 240153)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/fetcher.py	2019-01-18 18:14:08 UTC (rev 240154)
@@ -62,7 +62,8 @@
                 _log.warn('Patch is obsolete, skipping')
                 Patch.set_obsolete(patch_id)
                 continue
-            rc = Buildbot.send_patch_to_buildbot(bz_patch['path'], properties=['patch_id={}'.format(patch_id), 'bug_id={}'.format(bz_patch['bug_id'])])
+            rc = Buildbot.send_patch_to_buildbot(bz_patch['path'],
+                     properties=['patch_id={}'.format(patch_id), 'bug_id={}'.format(bz_patch['bug_id']), 'owner={}'.format(bz_patch.get('creator', ''))])
             if rc == 0:
                 Patch.set_bug_id(patch_id, bz_patch['bug_id'])
                 Patch.set_sent_to_buildbot(patch_id)

Modified: trunk/Tools/ChangeLog (240153 => 240154)


--- trunk/Tools/ChangeLog	2019-01-18 17:54:52 UTC (rev 240153)
+++ trunk/Tools/ChangeLog	2019-01-18 18:14:08 UTC (rev 240154)
@@ -1,3 +1,13 @@
+2019-01-18  Aakash Jain  <aakash_j...@apple.com>
+
+        [ews-app] Send patch author as a build property
+        https://bugs.webkit.org/show_bug.cgi?id=193560
+
+        Reviewed by Lucas Forschler.
+
+        * BuildSlaveSupport/ews-app/ews/fetcher.py:
+        (BugzillaPatchFetcher.fetch):
+
 2019-01-18  Jonathan Bedard  <jbed...@apple.com>
 
         webkitpy: Implement device type specific expected results (Follow-up fix)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to