use suggested route
All checks were successful
/ build-all-services (push) Successful in 9m32s

This commit is contained in:
husky 2025-03-14 18:38:43 -07:00
parent 0f6f0deb9c
commit 38ef5a45f6

View file

@ -99,7 +99,7 @@ async fn main() {
let damping = args.get(2).map(|v| v.parse::<f64>().expect("BAD FP")).unwrap_or(0.45);
warn!("suggesting {} with damping {}", suggestion_site, damping);
nats.publish(VOREBOT_SERVICE.to_string(), rmp_serde::to_vec(&CrawlRequest {
nats.publish(VOREBOT_SUGGESTED_SERVICE.to_string(), rmp_serde::to_vec(&CrawlRequest {
url: suggestion_site.to_string(),
damping,
}).unwrap().into()).await.unwrap();