fix: delete duplicated jobs
This commit is contained in:
parent
746ba4bbee
commit
87d0d7b6d2
1 changed files with 21 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
||||||
use sea_orm::{ColumnTrait, EntityTrait, Order, QueryFilter, QueryOrder};
|
use sea_orm::{ColumnTrait, EntityTrait, Order, QueryFilter, QueryOrder};
|
||||||
|
|
||||||
use upub::{model, Context};
|
use upub::{model, traits::process::ProcessorError, Context};
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
#[derive(Debug, thiserror::Error)]
|
||||||
pub enum JobError {
|
pub enum JobError {
|
||||||
|
@ -124,7 +124,10 @@ impl JobDispatcher for Context {
|
||||||
model::job::JobType::Delivery => crate::delivery::process(_ctx.clone(), &job).await,
|
model::job::JobType::Delivery => crate::delivery::process(_ctx.clone(), &job).await,
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Err(e) = res {
|
match res {
|
||||||
|
Ok(()) => tracing::debug!("job {} completed", job.activity),
|
||||||
|
Err(JobError::ProcessorError(ProcessorError::AlreadyProcessed)) => tracing::info!("dropping job already processed: {}", job.activity),
|
||||||
|
Err(e) => {
|
||||||
tracing::error!("failed processing job '{}': {e}", job.activity);
|
tracing::error!("failed processing job '{}': {e}", job.activity);
|
||||||
let active = job.clone().repeat();
|
let active = job.clone().repeat();
|
||||||
let mut count = 0;
|
let mut count = 0;
|
||||||
|
@ -141,6 +144,8 @@ impl JobDispatcher for Context {
|
||||||
tokio::time::sleep(std::time::Duration::from_secs(poll_interval)).await;
|
tokio::time::sleep(std::time::Duration::from_secs(poll_interval)).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
while pool.len() >= concurrency {
|
while pool.len() >= concurrency {
|
||||||
|
|
Loading…
Reference in a new issue