Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-parallax for openSUSE:Factory
checked in at 2023-03-03 22:28:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-parallax (Old)
and /work/SRC/openSUSE:Factory/.python-parallax.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-parallax"
Fri Mar 3 22:28:22 2023 rev:21 rq:1069092 version:1.0.8
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-parallax/python-parallax.changes
2022-11-07 13:51:29.779735736 +0100
+++
/work/SRC/openSUSE:Factory/.python-parallax.new.31432/python-parallax.changes
2023-03-03 22:31:27.812045656 +0100
@@ -1,0 +2,6 @@
+Fri Mar 3 07:13:28 UTC 2023 - XinLiang <[email protected]>
+
+- Fix: manager: writer thread can only be started once (bsc#1208817)
+ Add patch 0001-Fix-manager-writer-thread-can-only-be-started-once-b.patch
+
+-------------------------------------------------------------------
New:
----
0001-Fix-manager-writer-thread-can-only-be-started-once-b.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-parallax.spec ++++++
--- /var/tmp/diff_new_pack.xR1I94/_old 2023-03-03 22:31:28.276047635 +0100
+++ /var/tmp/diff_new_pack.xR1I94/_new 2023-03-03 22:31:28.280047652 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-parallax
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,7 @@
Group: Development/Languages/Python
URL: https://github.com/krig/parallax/
Source:
https://files.pythonhosted.org/packages/source/p/parallax/parallax-%{version}.tar.gz
+Patch1: 0001-Fix-manager-writer-thread-can-only-be-started-once-b.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
@@ -49,6 +50,7 @@
%prep
%setup -q -n parallax-%{version}
+%patch1 -p1
%build
%python_build
++++++ 0001-Fix-manager-writer-thread-can-only-be-started-once-b.patch ++++++
>From 4f8e3f0ef01a6a63deb51ff6adbd3ab0849d7903 Mon Sep 17 00:00:00 2001
From: nicholasyang <[email protected]>
Date: Fri, 3 Mar 2023 14:33:27 +0800
Subject: [PATCH] Fix: manager: writer thread can only be started once
(bsc#1208817)
---
parallax/manager.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/parallax/manager.py b/parallax/manager.py
index eb4df20..58b2398 100644
--- a/parallax/manager.py
+++ b/parallax/manager.py
@@ -98,8 +98,6 @@ class Manager(object):
writer = None
try:
- if writer:
- writer.start()
if self.askpass:
pass_server = PasswordServer()
pass_server.start(self.iomap, self.limit,
warn=self.warn_message)
--
2.34.1