[SCM] ci-tooling packaging branch, master, updated. 58f9d2855da08c597a0d3d03004fb0827f9bbf3a

Harald Sitter apachelogger-guest at moszumanska.debian.org
Fri Mar 13 09:20:39 UTC 2015


Gitweb-URL: http://git.debian.org/?p=pkg-kde/ci-tooling.git;a=commitdiff;h=58f9d28

The following commit has been merged in the master branch:
commit 58f9d2855da08c597a0d3d03004fb0827f9bbf3a
Author: Harald Sitter <sitter at kde.org>
Date:   Fri Mar 13 10:20:25 2015 +0100

    reduce promotion thread count to 2, launchpad has a race condition :O
---
 kci/ppa_promote.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kci/ppa_promote.rb b/kci/ppa_promote.rb
index b06bc19..dfde533 100755
--- a/kci/ppa_promote.rb
+++ b/kci/ppa_promote.rb
@@ -34,7 +34,7 @@ class Archive
                                          distro_series: @series)
       source_queue = Queue.new
       sources.each { |s| source_queue << s }
-      BlockingThreadPool.run(8) do
+      BlockingThreadPool.run(2) do
         until source_queue.empty?
           source = source_queue.pop(true)
           next if source.status == 'Deleted'
@@ -51,7 +51,7 @@ class Archive
   def copy(packages, from_ppa)
     source_queue = Queue.new
     packages.each_pair { |a| source_queue << a }
-    BlockingThreadPool.run(8) do
+    BlockingThreadPool.run(2) do
       until source_queue.empty?
         entry = source_queue.pop(true)
         source = entry[0]

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list