FAILURE_TIMEOUT set to 5 minutes

This commit is contained in:
CalDescent 2021-08-18 16:24:13 +01:00
parent 029c038a49
commit bedb87674b

View File

@ -21,7 +21,7 @@ public class ArbitraryDataBuildQueueItem {
// TODO: interrupt an in-progress build
public static long BUILD_TIMEOUT = 60*1000L; // 60 seconds
/* The amount of time to remember that a build has failed, to avoid retries */
public static long FAILURE_TIMEOUT = 1*60*1000L; // 5 minutes
public static long FAILURE_TIMEOUT = 5*60*1000L; // 5 minutes
public ArbitraryDataBuildQueueItem(String resourceId, ResourceIdType resourceIdType, Service service) {
this.resourceId = resourceId;