Disable GC worker in its entirety
This commit is contained in:
parent
63f9043312
commit
cdfaca8e78
1 changed files with 3 additions and 0 deletions
|
@ -12,6 +12,9 @@ class GarbageCollectionWorker(Worker):
|
||||||
|
|
||||||
def _garbage_collection_repos(self):
|
def _garbage_collection_repos(self):
|
||||||
""" Performs garbage collection on repositories. """
|
""" Performs garbage collection on repositories. """
|
||||||
|
# TODO(jschorr): Re-enable once GC is fixed for V22.
|
||||||
|
return
|
||||||
|
|
||||||
with UseThenDisconnect(app.config):
|
with UseThenDisconnect(app.config):
|
||||||
model.perform_garbage_collection()
|
model.perform_garbage_collection()
|
||||||
|
|
||||||
|
|
Reference in a new issue