[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] Linearise show_new for now



Signed-off-by: Mark Hymers <mhy@debian.org>
---
 dak/show_new.py |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/dak/show_new.py b/dak/show_new.py
index e6d15b6..ef4db31 100755
--- a/dak/show_new.py
+++ b/dak/show_new.py
@@ -250,15 +250,16 @@ def main():
 
     examine_package.use_html=1
 
-    pool = Pool(processes=1)
+    #pool = Pool(processes=1)
     for changes_file in changes_files:
         changes_file = utils.validate_changes_file_arg(changes_file, 0)
         if not changes_file:
             continue
         print "\n" + changes_file
-        pool.apply_async(do_pkg, (changes_file,))
-    pool.close()
-    pool.join()
+        #pool.apply_async(do_pkg, (changes_file,))
+        do_pkg(changes_file)
+    #pool.close()
+    #pool.join()
 
     files = set(os.listdir(cnf["Show-New::HTMLPath"]))
     to_delete = filter(lambda x: x.endswith(".html"), files.difference(sources))
-- 
1.7.2.5


Reply to: