diff --git a/src/Worker/WorkerManager.py b/src/Worker/WorkerManager.py index ae12e976..02f0387e 100644 --- a/src/Worker/WorkerManager.py +++ b/src/Worker/WorkerManager.py @@ -391,16 +391,16 @@ class WorkerManager(object): if "-default" in inner_path: return -4 # Default files are cloning not important elif inner_path.endswith(".css"): - return 7 # boost css files priority + return 17 # boost css files priority elif inner_path.endswith(".js"): - return 6 # boost js files priority + return 16 # boost js files priority elif inner_path.endswith("dbschema.json"): - return 5 # boost database specification + return 15 # boost database specification elif inner_path.endswith("content.json"): return 1 # boost included content.json files priority a bit elif inner_path.endswith(".json"): if len(inner_path) < 50: # Boost non-user json files more - return 4 + return 14 else: return 2 return 0