[vcs-log] use same dispose await time for sqlite

GitOrigin-RevId: 7c89daabb1a14061104dbff43095565021a09563
This commit is contained in:
Dmitry Zhuravlev
2023-07-04 15:47:57 +02:00
committed by intellij-monorepo-bot
parent 2254b1d6e6
commit 3997f1555d

View File

@@ -326,13 +326,6 @@ public final class VcsLogPersistentIndex implements VcsLogModifiableIndex, Dispo
super("index", parent, unused -> {});
}
@Override
protected int disposeLongTimeout() {
if (SqliteVcsLogStorageBackendKt.isSqliteBackend(myBackend)) return 5000;
return super.disposeLongTimeout();
}
@Override
protected @NotNull SingleTask startNewBackgroundTask() {
ProgressIndicator indicator = myProgress.createProgressIndicator(true, INDEXING);