Title: [261739] trunk/Tools
- Revision
- 261739
- Author
- [email protected]
- Date
- 2020-05-15 05:32:08 -0700 (Fri, 15 May 2020)
Log Message
[buildbot] Increase blocksize of file transfer in UploadTestResults step
https://bugs.webkit.org/show_bug.cgi?id=211847
Reviewed by Aakash Jain.
All other steps involving file transfer uploads use 256kb as block
size. Make this step in line with others.
* BuildSlaveSupport/build.webkit.org-config/steps.py:
(UploadTestResults.__init__):
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/steps.py (261738 => 261739)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/steps.py 2020-05-15 10:13:25 UTC (rev 261738)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/steps.py 2020-05-15 12:32:08 UTC (rev 261739)
@@ -1018,6 +1018,7 @@
kwargs['slavesrc'] = self.slavesrc
kwargs['masterdest'] = self.masterdest
kwargs['mode'] = 0644
+ kwargs['blocksize'] = 1024 * 256
transfer.FileUpload.__init__(self, **kwargs)
Modified: trunk/Tools/ChangeLog (261738 => 261739)
--- trunk/Tools/ChangeLog 2020-05-15 10:13:25 UTC (rev 261738)
+++ trunk/Tools/ChangeLog 2020-05-15 12:32:08 UTC (rev 261739)
@@ -1,3 +1,16 @@
+2020-05-15 Diego Pino Garcia <[email protected]>
+
+ [buildbot] Increase blocksize of file transfer in UploadTestResults step
+ https://bugs.webkit.org/show_bug.cgi?id=211847
+
+ Reviewed by Aakash Jain.
+
+ All other steps involving file transfer uploads use 256kb as block
+ size. Make this step in line with others.
+
+ * BuildSlaveSupport/build.webkit.org-config/steps.py:
+ (UploadTestResults.__init__):
+
2020-05-15 Adrian Perez de Castro <[email protected]>
[GTK3] Bring back usage of GtkMenu for context menus
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes