load extensions' git metadata in parallel to loading the main program to save a ton of time during startup

This commit is contained in:
AUTOMATIC
2023-05-15 20:57:11 +03:00
parent 0d3a80e269
commit 0d2a4b608c
3 changed files with 26 additions and 3 deletions

View File

@@ -83,6 +83,8 @@ def get_extension_config():
ext_config = {}
for ext in extensions.extensions:
ext.read_info_from_repo()
entry = {
"name": ext.name,
"path": ext.path,