File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 3030DEFAULT_JWT_TOKEN = 'test_jwt'
3131DEFAULT_CACHE_UPDATE_INTERVAL = 600
3232DEFAULT_EXCLUSIONS_URL = (
33- 'https://git.almalinux.org/almalinux/build-node-exclusions/raw/branch/main'
33+ 'https://git.almalinux.org/almalinux/build-node-exclusions/raw/branch/main/ '
3434)
3535DEFAULT_CACHE_SIZE = 1
3636
Original file line number Diff line number Diff line change @@ -103,7 +103,13 @@ def get_excluded_packages(self):
103103 except Exception :
104104 logging .exception ('Cannot get excluded packages' )
105105 return []
106- return self .__cached_config .get ('excluded_packages' , [])
106+
107+ excluded_packages = self .__cached_config .get (
108+ 'excluded_packages' , []
109+ )
110+ logging .debug ('Excluded packages in this node: %s' , excluded_packages )
111+ return excluded_packages
112+
107113
108114 def run (self ):
109115 self .__generate_request_session ()
You can’t perform that action at this time.
0 commit comments