2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-07-04 06:00:38 +00:00

Suppress dulwich warnings (#12163)

- Prevent erroneous dulwich warning messages
This commit is contained in:
Oliver
2026-06-14 18:20:57 +10:00
committed by GitHub
parent 9706bc672a
commit 0b5db2f16a
2 changed files with 5 additions and 0 deletions
@@ -55,6 +55,10 @@ try:
except (KeyError, IndexError):
logger.warning('INVE-W1: Current branch could not be detected.')
main_branch = None
if main_repo is not None:
main_repo.close()
main_repo = None
except ImportError:
logger.warning(
'INVE-W2: Dulwich module not found, git information will not be available.'
+1
View File
@@ -147,6 +147,7 @@ def get_git_log(path):
datetime.datetime.fromtimestamp(commit.author_time).isoformat(),
commit.message.decode().split('\n')[0],
]
repo.close()
except KeyError:
logger.debug('No HEAD tag found in git repo at path %s', path)
except NotGitRepository: