* make cleanup more aggressive

* fix test
This commit is contained in:
Zhenglai Zhang 2020-08-20 13:19:08 +08:00 коммит произвёл GitHub
Родитель 5bd75d9167
Коммит ff889f0b2b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -50,8 +50,8 @@ describe("RepoCleanupService", () => {
expect(indexServiceSpy.getLeastUsedRepos).not.toHaveBeenCalled();
diskUsageService.dataDiskUsage.next({
total: 10_000,
available: 4_000,
used: 4_000,
available: 8_000,
used: 2_000,
});
expect(indexServiceSpy.getLeastUsedRepos).not.toHaveBeenCalled();
});

Просмотреть файл

@ -25,7 +25,7 @@ export class RepoCleanupService {
.pipe(
filter(x => {
const freeRatio = x.available / x.total;
return freeRatio < 0.1;
return freeRatio < 0.5;
}),
exhaustMap(() => {
const count = this.getNumberOfReposToRemove();