Hello community,
here is the log from the commit of package python-rtslib-fb for
openSUSE:Factory checked in at 2020-09-01 20:05:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-rtslib-fb (Old)
and /work/SRC/openSUSE:Factory/.python-rtslib-fb.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-rtslib-fb"
Tue Sep 1 20:05:44 2020 rev:25 rq:829899 version:2.1.73
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-rtslib-fb/python-rtslib-fb.changes
2020-07-02 23:54:29.564505786 +0200
+++
/work/SRC/openSUSE:Factory/.python-rtslib-fb.new.3399/python-rtslib-fb.changes
2020-09-01 20:06:42.876574070 +0200
@@ -1,0 +2,7 @@
+Thu Aug 27 02:10:59 UTC 2020 - Matthew Oliver <[email protected]>
+
+- Updated the rbd-support.patch (bsc#1175808):
+ * Fixed the signiture of the RBDStorageObject to match changes made
+ to parent StorageObject class.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rbd-support.patch ++++++
--- /var/tmp/diff_new_pack.69fsex/_old 2020-09-01 20:06:45.080575101 +0200
+++ /var/tmp/diff_new_pack.69fsex/_new 2020-09-01 20:06:45.084575103 +0200
@@ -36,7 +36,7 @@
+ # RBDStorageObject private stuff
+
+ def __init__(self, name, dev=None, wwn=None, readonly=False,
-+ write_back=False):
++ write_back=False, index=None):
+ '''
+ A RBDIOStorageObject can be instantiated in two ways:
+ - B{Creation mode}: If I{dev} is specified, the underlying
configFS
@@ -62,14 +62,14 @@
+ '''
+
+ if dev is not None:
-+ super(RBDStorageObject, self).__init__(name, 'create')
++ super(RBDStorageObject, self).__init__(name, 'create', index)
+ try:
+ self._configure(dev, wwn, readonly)
+ except:
+ self.delete()
+ raise
+ else:
-+ super(RBDStorageObject, self).__init__(name, 'lookup')
++ super(RBDStorageObject, self).__init__(name, 'lookup', index)
+
+ def _configure(self, dev, wwn, readonly):
+ self._check_self()