Add a note about a query improvement blocked by upstream

This commit is contained in:
Jordan Brown
2018-09-29 15:17:04 -04:00
parent 9c80f61f5d
commit 4ae9962fca
@@ -142,6 +142,8 @@ namespace Tgstation.Server.Host.Components
var compileJobsTask = databaseContext.CompileJobs
.Where(x => x.Job.Instance.Id == metadata.Id)
.OrderByDescending(x => x.Job.StoppedAt)
//TODO: Replace with this select when the issues linked in https://github.com/tgstation/tgstation-server/issues/737 are fixed
//.Select(x => x.Job.StoppedAt.Value - x.Job.StartedAt.Value)
.Select(x => new Job
{
StoppedAt = x.Job.StoppedAt,