WebCuratorTool / webcurator

The root of the webcurator tool project, containing all modules needed to run a fully functional webcurator tool.
Apache License 2.0
2 stars 1 forks source link

WCTIndexer should not fail silently #58

Closed hannakoppelaar closed 2 years ago

hannakoppelaar commented 2 years ago

The method createIndex in WCTIndexer has a Retryable annotation, yet does not log all errors that can occur. This can make configuration or networking issues hard to pinpoint, since the thread will silently retry the call Integer.MAX_VALUE times. The method should catch all exceptions and log a warning or an error before the next iteration.

hannakoppelaar commented 2 years ago

This issue no longer occurs in the master branch, due to the way the visualisation code has been implemented