mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 06:23:08 +00:00
Don't overwrite Faktory custom, set labels.
This commit is contained in:
parent
3e144828c8
commit
b2e2d74d01
@ -32,7 +32,10 @@ impl FaktoryClient {
|
||||
let faktory = self.faktory.clone();
|
||||
|
||||
tracing::trace!("Attempting to enqueue job");
|
||||
job.custom = get_faktory_custom();
|
||||
job.custom = get_faktory_custom()
|
||||
.into_iter()
|
||||
.chain(job.custom.into_iter())
|
||||
.collect();
|
||||
|
||||
tokio::task::spawn_blocking(move || {
|
||||
let mut faktory = faktory.lock().unwrap();
|
||||
|
@ -1,8 +1,6 @@
|
||||
#[cfg(feature = "queue")]
|
||||
pub mod faktory;
|
||||
pub mod types;
|
||||
#[cfg(feature = "video")]
|
||||
pub mod video;
|
||||
|
||||
#[cfg(feature = "trace")]
|
||||
pub mod trace;
|
||||
|
@ -30,6 +30,7 @@ fn main() {
|
||||
let rt = Arc::new(tokio::runtime::Runtime::new().unwrap());
|
||||
|
||||
let mut faktory = faktory::ConsumerBuilder::default();
|
||||
faktory.labels(vec!["fuzzysearch-refresh".to_string()]);
|
||||
faktory.workers(2);
|
||||
|
||||
let p = Arc::new(Mutex::new(faktory::Producer::connect(None).unwrap_or_log()));
|
||||
|
@ -42,6 +42,7 @@ fn main() {
|
||||
.unwrap_or_log();
|
||||
|
||||
let mut faktory = faktory::ConsumerBuilder::default();
|
||||
faktory.labels(vec!["fuzzysearch-webhook".to_string()]);
|
||||
faktory.workers(2);
|
||||
|
||||
let producer = std::sync::Mutex::new(faktory::Producer::connect(None).unwrap());
|
||||
|
Loading…
Reference in New Issue
Block a user