Title: [280602] trunk/Tools
Revision
280602
Author
jbed...@apple.com
Date
2021-08-03 10:49:05 -0700 (Tue, 03 Aug 2021)

Log Message

[check-github-mirror-integrity] Handle slow Svn query
https://bugs.webkit.org/show_bug.cgi?id=228741

Reviewed by Aakash Jain.

* Scripts/check-github-mirror-integrity: Pull commit from GitHub before Subversion.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (280601 => 280602)


--- trunk/Tools/ChangeLog	2021-08-03 17:34:48 UTC (rev 280601)
+++ trunk/Tools/ChangeLog	2021-08-03 17:49:05 UTC (rev 280602)
@@ -1,3 +1,12 @@
+2021-08-03  Jonathan Bedard  <jbed...@apple.com>
+
+        [check-github-mirror-integrity] Handle slow Svn query
+        https://bugs.webkit.org/show_bug.cgi?id=228741
+
+        Reviewed by Aakash Jain.
+
+        * Scripts/check-github-mirror-integrity: Pull commit from GitHub before Subversion.
+
 2021-08-03  Philippe Normand  <pnorm...@igalia.com>
 
         [WPE][GTK] SVN_REVISION drifting away if bots don't re-run cmake

Modified: trunk/Tools/Scripts/check-github-mirror-integrity (280601 => 280602)


--- trunk/Tools/Scripts/check-github-mirror-integrity	2021-08-03 17:34:48 UTC (rev 280601)
+++ trunk/Tools/Scripts/check-github-mirror-integrity	2021-08-03 17:49:05 UTC (rev 280602)
@@ -30,11 +30,11 @@
 
 
 def main():
-    repository = remote.Svn('https://svn.webkit.org/repository/webkit')
     mirror = remote.GitHub('https://github.com/WebKit/WebKit')
+    repository = remote.Svn('https://svn.webkit.org/repository/webkit')    
 
+    mirror_tip = mirror.commit(branch='main')
     canonical_tip = repository.commit(branch='trunk')
-    mirror_tip = mirror.commit(branch='main')
 
     if mirror_tip.identifier == canonical_tip.identifier:
         print('GitHub and svn.webkit.org are in sync')
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to