Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/validator parameters #197

Merged
merged 2 commits into from
Mar 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions validator/src/validators/synthetic_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ impl SyntheticDataValidator {
) -> Result<(), Error> {
let expiry = match status {
// Must switch to pending within 60 seconds otherwise we resubmit it
ValidationResult::Unknown => 600,
ValidationResult::Unknown => 60,
_ => 0,
};
let mut con = self.redis_store.client.get_connection()?;
Expand Down Expand Up @@ -426,14 +426,19 @@ impl SyntheticDataValidator {
}
_ => {
if let Err(e) = self.process_workkey_status(work_key).await {
error!("Failed to process work key {}: {}", work_key, e);
error!(
"Failed to process work key {}: {} - previous status {:?}",
work_key, e, status
);
}
}
},
None => {
if let Err(e) = self.trigger_remote_toploc_validation(work_key).await {
error!("Failed to trigger work key {}: {}", work_key, e);
}

debug!("Sleeping for {} seconds", self.toploc_grace_interval);
tokio::time::sleep(tokio::time::Duration::from_secs(
self.toploc_grace_interval,
))
Expand Down