mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 03:51:00 +00:00
Properly fetch jobs for memory storage
This commit is contained in:
parent
007d53b3c5
commit
3144b71abb
1 changed files with 9 additions and 3 deletions
|
@ -135,6 +135,7 @@ pub trait Storage: Clone + Send {
|
||||||
/// A default, in-memory implementation of a storage mechanism
|
/// A default, in-memory implementation of a storage mechanism
|
||||||
pub mod memory_storage {
|
pub mod memory_storage {
|
||||||
use super::{JobInfo, Stats};
|
use super::{JobInfo, Stats};
|
||||||
|
use chrono::Utc;
|
||||||
use futures::lock::Mutex;
|
use futures::lock::Mutex;
|
||||||
use std::{collections::HashMap, convert::Infallible, sync::Arc};
|
use std::{collections::HashMap, convert::Infallible, sync::Arc};
|
||||||
|
|
||||||
|
@ -195,16 +196,21 @@ pub mod memory_storage {
|
||||||
|
|
||||||
async fn fetch_job_from_queue(&self, queue: &str) -> Result<Option<JobInfo>, Self::Error> {
|
async fn fetch_job_from_queue(&self, queue: &str) -> Result<Option<JobInfo>, Self::Error> {
|
||||||
let mut inner = self.inner.lock().await;
|
let mut inner = self.inner.lock().await;
|
||||||
|
let now = Utc::now();
|
||||||
|
|
||||||
let j = inner
|
let j = inner
|
||||||
.queues
|
.queues
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(|(k, v)| {
|
.filter_map(|(k, v)| {
|
||||||
if v == queue {
|
if v == queue {
|
||||||
inner.jobs.get(k).map(|j| j.clone())
|
let job = inner.jobs.get(k)?;
|
||||||
} else {
|
|
||||||
None
|
if job.is_pending(now) && job.is_ready(now) && job.is_in_queue(queue) {
|
||||||
|
return Some(job.clone());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
None
|
||||||
})
|
})
|
||||||
.next();
|
.next();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue