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

Only update boteditcount report daily, not hourly #61

Merged
merged 1 commit into from
Feb 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions dbreps2/src/enwiki/boteditcount.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ impl Report<Row> for BotEditCount {
"|-\n|}\n".to_string()
}

fn needs_update(&self, _old_text: &str) -> Result<bool> {
Ok(time::OffsetDateTime::now_utc().hour() == 4)
}

async fn post_run(&self, bot: &Bot, debug_mode: bool) -> Result<()> {
info!("Updating Wikipedia:List of bots by number of edits/Age");

Expand Down