This commit is contained in:
Adam D. Ruppe 2019-08-04 19:12:02 -04:00
parent f43729fef8
commit 15491784cf
1 changed files with 2 additions and 2 deletions

4
cgi.d
View File

@ -5807,9 +5807,9 @@ final class ScheduledJobServerImplementation : ScheduledJobServer, EventIoServer
ev.data.ptr = op;
if(epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fd, &ev) == -1)
throw new Exception("epoll_ctl " ~ to!string(errno));
}
jobs[nj] = job;
jobs[nj] = job;
} else assert(0);
return nj;
}