Disable GC worker in its entirety

This commit is contained in:
Joseph Schorr 2018-12-03 10:42:53 -05:00
parent 63f9043312
commit cdfaca8e78

View file

@ -12,6 +12,9 @@ class GarbageCollectionWorker(Worker):
def _garbage_collection_repos(self):
""" Performs garbage collection on repositories. """
# TODO(jschorr): Re-enable once GC is fixed for V22.
return
with UseThenDisconnect(app.config):
model.perform_garbage_collection()