Skip to content

Commit e4c4239

Browse files
fix linq cbug
1 parent a57bc5a commit e4c4239

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Models/RunnerQueue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public int CountMatchingRunners(string size, string owner, string profile)
7676
ctq => ctq.RunnerDbId,
7777
r => r.RunnerId,
7878
(ctq, r) => r)
79-
.Count(r => r.Size == size && r.Owner == owner && r.Profile == profile && r.CreationQueuedTime < (DateTime.UtcNow - TimeSpan.FromHours(2)));
79+
.Count(r => r.Size == size && r.Owner == owner && r.Profile == profile);
8080
}
8181

8282
public bool TryDequeue(out CreateRunnerTask? task)

0 commit comments

Comments
 (0)