Skip to content

Commit

Permalink
Remove unnecessary timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
duzda committed Feb 18, 2025
1 parent 6dbafec commit 1e3225b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/ipahealthcheck/meta/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ def check(self):
proc_fips_enable_path = Path(paths.PROC_FIPS_ENABLED)
result_text = proc_fips_enable_path.read_text()
result = int(result_text)
except TimeoutError:
logger.debug('Reading %s timed out' % paths.PROC_FIPS_ENABLED)
fips = "check timed out"
rval = constants.ERROR
except Exception as e:
logger.debug('Reading %s failed: %s' %
(paths.PROC_FIPS_ENABLED, e))
Expand Down

0 comments on commit 1e3225b

Please sign in to comment.