We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4af2b11 commit d6f23bbCopy full SHA for d6f23bb
1 file changed
PoolManager.cs
@@ -310,12 +310,12 @@ private async Task CheckForStuckJobs(List<GithubTargetConfiguration> targetConfi
310
if (stuckJob.QueueTime + TimeSpan.FromHours(2) > DateTime.UtcNow)
311
{
312
_logger.LogWarning($"Would mark stuck job {stuckJob.GithubJobId} vanished as it's no longer in the GitHub queued state for more than 2h.");
313
- /*stuckJob.State = JobState.Vanished;
+ stuckJob.State = JobState.Vanished;
314
stuckJob.CompleteTime = DateTime.UtcNow;
315
- await db.SaveChangesAsync();*/
+ await db.SaveChangesAsync();
316
}
317
318
- //continue;
+ continue;
319
320
321
string runnerToken = owner.Target switch
0 commit comments