Browse Source

Log the error if a build fails.

qdn
CalDescent 3 years ago
parent
commit
2eedafd506
  1. 1
      src/main/java/org/qortal/controller/arbitrary/ArbitraryDataBuildManager.java

1
src/main/java/org/qortal/controller/arbitrary/ArbitraryDataBuildManager.java

@ -61,6 +61,7 @@ public class ArbitraryDataBuildManager implements Runnable {
LOGGER.info("Finished building {}", queueItem);
} catch (IOException | DataException e) {
LOGGER.info("Error building {}: {}", queueItem, e.getMessage());
// Something went wrong - so remove it from the queue
// TODO: we may want to keep track of this in a "cooloff" list to prevent frequent re-attempts
this.removeFromQueue(resourceId);

Loading…
Cancel
Save