[vcs-log] do not report failure to create index storage to the error handler

If after cleaning all storage files the storage still cannot be created, then recreating log likely won't help, and it would be simpler to proceed without the index.

GitOrigin-RevId: d71cfed51d5c301b4e6ddc717660a6f3cc6037a6
This commit is contained in:
Julia Beliaeva
2023-08-31 05:38:35 +02:00
committed by intellij-monorepo-bot
parent 714e97b4a9
commit fdfdbc7c18

View File

@@ -345,8 +345,7 @@ internal class PhmVcsLogStorageBackend(
}
}
}
catch (e: IOException) {
errorHandler.handleError(VcsLogErrorHandler.Source.Index, e)
catch (_: IOException) {
}
return null
}