All of lore.kernel.org
 help / color / mirror / Atom feed
* main - lvmdbusd: Correct undefined var
@ 2022-09-19 15:58 Tony Asleson
  0 siblings, 0 replies; only message in thread
From: Tony Asleson @ 2022-09-19 15:58 UTC (permalink / raw)
  To: lvm-devel

Gitweb:        https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=ed9072dad8316e65c22ad4530984174fd488b56c
Commit:        ed9072dad8316e65c22ad4530984174fd488b56c
Parent:        a326e35cda10b922dfa29d27e9c03e3b56282ba5
Author:        Tony Asleson <tasleson@redhat.com>
AuthorDate:    Thu Sep 8 15:37:34 2022 -0500
Committer:     Tony Asleson <tasleson@redhat.com>
CommitterDate: Fri Sep 16 10:49:37 2022 -0500

lvmdbusd: Correct undefined var

---
 daemons/lvmdbusd/fetch.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/daemons/lvmdbusd/fetch.py b/daemons/lvmdbusd/fetch.py
index 199b86073..9da62590a 100644
--- a/daemons/lvmdbusd/fetch.py
+++ b/daemons/lvmdbusd/fetch.py
@@ -6,6 +6,7 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
+import errno
 
 from .pv import load_pvs
 from .vg import load_vgs
@@ -167,7 +168,7 @@ class StateUpdate(object):
 				log_error("Too many errors in update_thread, exiting daemon")
 				cfg.debug.dump()
 				cfg.flightrecorder.dump()
-				bailing(e)
+				bailing(errno.EFAULT)
 				cfg.exit_daemon()
 			else:
 				# Slow things down when encountering errors


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-09-19 15:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-19 15:58 main - lvmdbusd: Correct undefined var Tony Asleson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.