Hello community,

here is the log from the commit of package salt for openSUSE:Factory checked in 
at 2020-09-10 22:48:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/salt (Old)
 and      /work/SRC/openSUSE:Factory/.salt.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "salt"

Thu Sep 10 22:48:11 2020 rev:108 rq:832998 version:3000.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/salt/salt.changes        2020-08-17 
12:01:11.890554424 +0200
+++ /work/SRC/openSUSE:Factory/.salt.new.4249/salt.changes      2020-09-10 
22:48:31.931850736 +0200
@@ -1,0 +2,33 @@
+Tue Sep  8 12:59:11 UTC 2020 - Jochen Breuer <[email protected]>
+
+- Reintroduces the patches from
+  opensuse-3000.2-virt-backports-236.patch coming from Salt 3001
+
+- Added:
+  * backport-virt-patches-from-3001-256.patch
+
+-------------------------------------------------------------------
+Tue Sep  1 08:42:50 UTC 2020 - Pablo Suárez Hernández 
<[email protected]>
+
+- Adding missing virt backports to 3000.3
+
+- Added:
+  * opensuse-3000.2-virt-backports-236-257.patch
+
+-------------------------------------------------------------------
+Thu Aug 27 14:30:10 UTC 2020 - Pablo Suárez Hernández 
<[email protected]>
+
+- Do not raise StreamClosedError traceback but only log it (bsc#1175549)
+
+- Added:
+  * do-not-raise-streamclosederror-traceback-but-only-lo.patch
+
+-------------------------------------------------------------------
+Mon Aug 17 11:28:26 UTC 2020 - Pablo Suárez Hernández 
<[email protected]>
+
+- Take care of failed, skipped and unreachable tasks and propagate "retcode" 
(bsc#1173911) (bsc#1173909)
+
+- Added:
+  * ansiblegate-take-care-of-failed-skipped-and-unreacha.patch
+
+-------------------------------------------------------------------

New:
----
  ansiblegate-take-care-of-failed-skipped-and-unreacha.patch
  backport-virt-patches-from-3001-256.patch
  do-not-raise-streamclosederror-traceback-but-only-lo.patch
  opensuse-3000.2-virt-backports-236-257.patch

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

Other differences:
------------------
++++++ salt.spec ++++++
--- /var/tmp/diff_new_pack.c9jB8P/_old  2020-09-10 22:48:34.975853540 +0200
+++ /var/tmp/diff_new_pack.c9jB8P/_new  2020-09-10 22:48:34.979853544 +0200
@@ -328,6 +328,14 @@
 Patch122:     opensuse-3000-libvirt-engine-fixes-251.patch
 # PATCH-FIX_UPSTREAM: https://github.com/saltstack/salt/pull/58013
 Patch123:     fix-__mount_device-wrapper-254.patch
+# PATCH-FIX_UPSTREAM: https://github.com/saltstack/salt/pull/58214
+Patch124:     ansiblegate-take-care-of-failed-skipped-and-unreacha.patch
+# PATCH-FIX_UPSTREAM: https://github.com/saltstack/salt/pull/58301
+Patch125:     do-not-raise-streamclosederror-traceback-but-only-lo.patch
+# PATCH-FIX_OPENSUSE: https://github.com/openSUSE/salt/pull/257
+Patch126:     opensuse-3000.2-virt-backports-236-257.patch
+# PATCH-FIX_OPENSUSE: https://github.com/openSUSE/salt/pull/256
+Patch127:     backport-virt-patches-from-3001-256.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  logrotate
@@ -957,6 +965,10 @@
 %patch121 -p1
 %patch122 -p1
 %patch123 -p1
+%patch124 -p1
+%patch125 -p1
+%patch126 -p1
+%patch127 -p1
 
 %build
 # Putting /usr/bin at the front of $PATH is needed for RHEL/RES 7. Without this

++++++ _lastrevision ++++++
--- /var/tmp/diff_new_pack.c9jB8P/_old  2020-09-10 22:48:35.051853610 +0200
+++ /var/tmp/diff_new_pack.c9jB8P/_new  2020-09-10 22:48:35.055853614 +0200
@@ -1 +1 @@
-3c85bd3a365dd15aae8f08c2cb95f16db987fe7b
\ No newline at end of file
+b193a24466b79150ec137a7e4cc144362b588ef0
\ No newline at end of file

++++++ ansiblegate-take-care-of-failed-skipped-and-unreacha.patch ++++++
++++ 1824 lines (skipped)

++++++ backport-virt-patches-from-3001-256.patch ++++++
++++ 7112 lines (skipped)

++++++ do-not-raise-streamclosederror-traceback-but-only-lo.patch ++++++
>From b651c2cd8b719a72e66b63afd9061739624763e1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Pablo=20Su=C3=A1rez=20Hern=C3=A1ndez?=
 <[email protected]>
Date: Wed, 26 Aug 2020 10:24:58 +0100
Subject: [PATCH] Do not raise StreamClosedError traceback but only log
 it (bsc#1175549)

---
 salt/transport/ipc.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/salt/transport/ipc.py b/salt/transport/ipc.py
index 33ee3d4182..624eca5a9c 100644
--- a/salt/transport/ipc.py
+++ b/salt/transport/ipc.py
@@ -667,7 +667,6 @@ class IPCMessageSubscriber(IPCClient):
         except StreamClosedError as exc:
             log.trace('Subscriber disconnected from IPC %s', self.socket_path)
             self._read_stream_future = None
-            exc_to_raise = exc
         except Exception as exc:  # pylint: disable=broad-except
             log.error('Exception occurred in Subscriber while handling stream: 
%s', exc)
             self._read_stream_future = None
-- 
2.28.0


++++++ opensuse-3000.2-virt-backports-236-257.patch ++++++
++++ 21134 lines (skipped)


Reply via email to