Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2021-10-30 23:13:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Sat Oct 30 23:13:55 2021 rev:344 rq:928250 version:20211029.a924a9b0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2021-10-29 22:35:30.895711167 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1890/openSUSE-release-tools.changes
  2021-10-30 23:14:44.299103828 +0200
@@ -1,0 +2,42 @@
+Fri Oct 29 14:19:42 UTC 2021 - opensuse-releaset...@opensuse.org
+
+- Update to version 20211029.a924a9b0:
+  * Revert container-cleaner experiments
+
+-------------------------------------------------------------------
+Fri Oct 29 13:37:47 UTC 2021 - opensuse-releaset...@opensuse.org
+
+- Update to version 20211029.4c20c475:
+  * One more endless loop test against the API
+
+-------------------------------------------------------------------
+Fri Oct 29 13:28:38 UTC 2021 - opensuse-releaset...@opensuse.org
+
+- Update to version 20211029.b54a9360:
+  * Make the container cleaner endless loop against login proxy without auth
+
+-------------------------------------------------------------------
+Fri Oct 29 13:12:11 UTC 2021 - opensuse-releaset...@opensuse.org
+
+- Update to version 20211029.c711dd57:
+  * Now test endless loop on a different SSL host
+
+-------------------------------------------------------------------
+Fri Oct 29 12:58:44 UTC 2021 - opensuse-releaset...@opensuse.org
+
+- Update to version 20211029.80bb54c9:
+  * Debug endless loop to verify the underlying problem
+
+-------------------------------------------------------------------
+Fri Oct 29 12:21:10 UTC 2021 - opensuse-releaset...@opensuse.org
+
+- Update to version 20211029.ca55ff6c:
+  * gocd: Disable cache for container cleaner
+
+-------------------------------------------------------------------
+Fri Oct 29 12:04:40 UTC 2021 - opensuse-releaset...@opensuse.org
+
+- Update to version 20211029.faa760d6:
+  * gocd: Run container cleanup with full debug
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20211029.321c5259.obscpio

New:
----
  openSUSE-release-tools-20211029.a924a9b0.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.PRPLh3/_old  2021-10-30 23:14:44.971104369 +0200
+++ /var/tmp/diff_new_pack.PRPLh3/_new  2021-10-30 23:14:44.975104372 +0200
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20211029.321c5259
+Version:        20211029.a924a9b0
 Release:        0
 Summary:        Tools to aid in staging and release work for openSUSE/SUSE
 License:        GPL-2.0-or-later AND MIT

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.PRPLh3/_old  2021-10-30 23:14:45.011104401 +0200
+++ /var/tmp/diff_new_pack.PRPLh3/_new  2021-10-30 23:14:45.011104401 +0200
@@ -1,6 +1,6 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
-    <param 
name="changesrevision">321c52594bf111dacce1859fc48228cc9cbe2cba</param>
+    <param 
name="changesrevision">a924a9b0d1926d01cebedfdec2b4194b757804be</param>
   </service>
 </servicedata>

++++++ openSUSE-release-tools-20211029.321c5259.obscpio -> 
openSUSE-release-tools-20211029.a924a9b0.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openSUSE-release-tools-20211029.321c5259/ToolBase.py 
new/openSUSE-release-tools-20211029.a924a9b0/ToolBase.py
--- old/openSUSE-release-tools-20211029.321c5259/ToolBase.py    2021-10-29 
12:28:43.000000000 +0200
+++ new/openSUSE-release-tools-20211029.a924a9b0/ToolBase.py    2021-10-29 
16:18:33.000000000 +0200
@@ -121,7 +121,9 @@
         parser.add_option("-d", "--debug", action="store_true", help="debug 
output")
         parser.add_option("--osc-debug", action="store_true", help="osc debug 
output")
         parser.add_option("--verbose", action="store_true", help="verbose")
-
+        parser.add_option("--http-debug", action="store_true", help="osc http 
debug output")
+        parser.add_option('--http-full-debug', action='store_true',
+                          help='debug HTTP traffic (filters no headers)')
         parser.add_option('--cache-requests', action='store_true', 
default=False,
                         help='cache GET requests. Not recommended for daily 
use.')
 
@@ -136,10 +138,10 @@
 
         logging.basicConfig(level=level)
 
-        osc.conf.get_config(override_apiurl = self.options.apiurl)
-
-        if self.options.osc_debug:
-            osc.conf.config['debug'] = 1
+        osc.conf.get_config(override_apiurl = self.options.apiurl,
+                            override_debug = self.options.debug,
+                            override_http_debug = self.options.http_debug,
+                            override_http_full_debug = 
self.options.http_full_debug)
 
         self.tool = self.setup_tool()
         self.tool.dryrun = self.options.dry
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20211029.321c5259/gocd/container-cleaner.gocd.yaml 
new/openSUSE-release-tools-20211029.a924a9b0/gocd/container-cleaner.gocd.yaml
--- 
old/openSUSE-release-tools-20211029.321c5259/gocd/container-cleaner.gocd.yaml   
    2021-10-29 12:28:43.000000000 +0200
+++ 
new/openSUSE-release-tools-20211029.a924a9b0/gocd/container-cleaner.gocd.yaml   
    2021-10-29 16:18:33.000000000 +0200
@@ -17,7 +17,7 @@
     - Run:
         approval: manual
         resources:
-        - staging-bot-reuse-1
+        - staging-bot
         tasks:
         - script: |-
             scripts/container_cleaner.py --verbose run 
openSUSE:Containers:Tumbleweed

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.PRPLh3/_old  2021-10-30 23:14:45.415104726 +0200
+++ /var/tmp/diff_new_pack.PRPLh3/_new  2021-10-30 23:14:45.419104729 +0200
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20211029.321c5259
-mtime: 1635503323
-commit: 321c52594bf111dacce1859fc48228cc9cbe2cba
+version: 20211029.a924a9b0
+mtime: 1635517113
+commit: a924a9b0d1926d01cebedfdec2b4194b757804be
 

Reply via email to