@merkl/api 0.10.159 → 0.10.160
Sign up to get free protection for your applications and to get access to all the features.
@@ -49,6 +49,9 @@ export class StatusService {
|
|
49
49
|
if (!status) {
|
50
50
|
return true;
|
51
51
|
}
|
52
|
-
|
52
|
+
if (status.status === RunStatus.PROCESSING) {
|
53
|
+
return status.processingStarted < moment().unix() - MAX_COMPUTE_JOB_TIME;
|
54
|
+
}
|
55
|
+
return true;
|
53
56
|
}
|
54
57
|
}
|