Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python3-ec2imgutils for
openSUSE:Factory checked in at 2021-11-10 21:47:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-ec2imgutils (Old)
and /work/SRC/openSUSE:Factory/.python3-ec2imgutils.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-ec2imgutils"
Wed Nov 10 21:47:07 2021 rev:16 rq:930678 version:9.0.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-ec2imgutils/python3-ec2imgutils.changes
2021-09-23 23:04:32.420344794 +0200
+++
/work/SRC/openSUSE:Factory/.python3-ec2imgutils.new.1890/python3-ec2imgutils.changes
2021-11-10 21:47:57.963851141 +0100
@@ -1,0 +2,7 @@
+Wed Nov 3 13:55:26 UTC 2021 - Robert Schweikert <[email protected]>
+
+- Update to version 9.0.4 (bsc#1192298)
+ + Set a time out for the ssh connection to avoid hang in a multi threaded
+ environment
+
+-------------------------------------------------------------------
Old:
----
ec2imgutils-9.0.3.tar.bz2
New:
----
ec2imgutils-9.0.4.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-ec2imgutils.spec ++++++
--- /var/tmp/diff_new_pack.9SNnD7/_old 2021-11-10 21:47:58.311851292 +0100
+++ /var/tmp/diff_new_pack.9SNnD7/_new 2021-11-10 21:47:58.311851292 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python3-ec2imgutils
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2018 SUSE Linux GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,19 +12,19 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via https://bugs.opensuse.org/
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define upstream_name ec2imgutils
Name: python3-ec2imgutils
-Version: 9.0.3
+Version: 9.0.4
Release: 0
Summary: Image management utilities for AWS EC2
-License: GPL-3.0-or-later
+License: GPL-3.0+
Group: System/Management
-URL: https://github.com/SUSE-Enceladus/ec2imgutils
+Url: https://github.com/SUSE-Enceladus/ec2imgutils
Source0: %{upstream_name}-%{version}.tar.bz2
Requires: python3
Requires: python3-boto3 >= 1.18.7
++++++ ec2imgutils-9.0.3.tar.bz2 -> ec2imgutils-9.0.4.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ec2imgutils-9.0.3/lib/ec2imgutils/VERSION
new/ec2imgutils-9.0.4/lib/ec2imgutils/VERSION
--- old/ec2imgutils-9.0.3/lib/ec2imgutils/VERSION 2021-09-20
11:58:48.460616311 +0200
+++ new/ec2imgutils-9.0.4/lib/ec2imgutils/VERSION 2021-11-03
14:51:59.424617738 +0100
@@ -1 +1 @@
-9.0.3
+9.0.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ec2imgutils-9.0.3/lib/ec2imgutils/ec2uploadimg.py
new/ec2imgutils-9.0.4/lib/ec2imgutils/ec2uploadimg.py
--- old/ec2imgutils-9.0.3/lib/ec2imgutils/ec2uploadimg.py 2021-09-20
11:58:48.460616311 +0200
+++ new/ec2imgutils-9.0.4/lib/ec2imgutils/ec2uploadimg.py 2021-11-03
14:51:59.424617738 +0100
@@ -590,7 +590,8 @@
ssh_connection = client.connect(
key_filename=self.ssh_key_private_key_file,
username=self.inst_user_name,
- hostname=instance_ip
+ hostname=instance_ip,
+ timeout=10
)
except (Exception, ConnectionResetError):
if self.log_level == logging.DEBUG: