store crawler link relations #5

Merged
husky merged 3 commits from feature/nikocs/vorebot-store-link-relations into develop 2025-03-16 15:49:23 -07:00
Showing only changes of commit 38ef5a45f6 - Show all commits

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();