all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 0784fdc7aabd2e94d295a46515a7cace751d5bd4 1602 bytes (raw)
name: gnu/packages/patches/sssd-optional-systemd.patch 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
 
Allow running sss_analyze without Python modules for systemd.
Upstream PR: https://github.com/SSSD/sssd/pull/6125

diff --git a/src/tools/analyzer/modules/request.py b/src/tools/analyzer/modules/request.py
index b96a23c05..28ac2f194 100644
--- a/src/tools/analyzer/modules/request.py
+++ b/src/tools/analyzer/modules/request.py
@@ -1,8 +1,6 @@
 import re
 import logging
 
-from sssd.source_files import Files
-from sssd.source_journald import Journald
 from sssd.parser import SubparsersAction
 from sssd.parser import Option
 
@@ -77,8 +75,10 @@ class RequestAnalyzer:
             Instantiated source object
         """
         if args.source == "journald":
+            from sssd.source_journald import Journald
             source = Journald()
         else:
+            from sssd.source_files import Files
             source = Files(args.logdir)
         return source
 
@@ -143,7 +143,7 @@ class RequestAnalyzer:
             self.consumed_logs.append(line.rstrip(line[-1]))
         else:
             # files source includes newline
-            if isinstance(source, Files):
+            if type(source).__name__ == 'Files':
                 print(line, end='')
             else:
                 print(line)
@@ -225,7 +225,7 @@ class RequestAnalyzer:
         source.set_component(component, False)
         self.done = ""
         for line in self.matched_line(source, patterns):
-            if isinstance(source, Journald):
+            if type(source).__name__ == 'Journald':
                 print(line)
             else:
                 self.print_formatted(line, args.verbose)

debug log:

solving 0784fdc7aa ...
found 0784fdc7aa in https://git.savannah.gnu.org/cgit/guix.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

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.