Remove bulk --full argument so that --wiki-from doesn't cause the wrong Steam IDs to refresh
This commit is contained in:
parent
e428c4d41a
commit
c6ced7e122
1 changed files with 2 additions and 7 deletions
|
@ -45,10 +45,6 @@ pub enum Subcommand {
|
||||||
/// Fetch bulk updates from the data sources.
|
/// Fetch bulk updates from the data sources.
|
||||||
/// By default, this only updates entries that are marked as outdated.
|
/// By default, this only updates entries that are marked as outdated.
|
||||||
Bulk {
|
Bulk {
|
||||||
/// Do a full sync.
|
|
||||||
#[clap(long)]
|
|
||||||
full: bool,
|
|
||||||
|
|
||||||
/// Only refresh this many entries.
|
/// Only refresh this many entries.
|
||||||
#[clap(long)]
|
#[clap(long)]
|
||||||
limit: Option<usize>,
|
limit: Option<usize>,
|
||||||
|
@ -106,14 +102,13 @@ pub async fn run(
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
match sub {
|
match sub {
|
||||||
Subcommand::Bulk {
|
Subcommand::Bulk {
|
||||||
full,
|
|
||||||
limit,
|
limit,
|
||||||
recent_changes,
|
recent_changes,
|
||||||
missing_pages,
|
missing_pages,
|
||||||
wiki_from,
|
wiki_from,
|
||||||
steam_from,
|
steam_from,
|
||||||
} => {
|
} => {
|
||||||
let outdated_only = !full && wiki_from.is_none();
|
let outdated_only = wiki_from.is_none();
|
||||||
if recent_changes {
|
if recent_changes {
|
||||||
wiki_cache.flag_recent_changes(wiki_meta_cache).await?;
|
wiki_cache.flag_recent_changes(wiki_meta_cache).await?;
|
||||||
}
|
}
|
||||||
|
@ -122,7 +117,7 @@ pub async fn run(
|
||||||
}
|
}
|
||||||
wiki_cache.refresh(outdated_only, None, limit, wiki_from).await?;
|
wiki_cache.refresh(outdated_only, None, limit, wiki_from).await?;
|
||||||
|
|
||||||
let outdated_only = !full && steam_from.is_none();
|
let outdated_only = steam_from.is_none();
|
||||||
steam_cache.transition_states_from(wiki_cache);
|
steam_cache.transition_states_from(wiki_cache);
|
||||||
steam_cache.refresh(outdated_only, None, limit, steam_from)?;
|
steam_cache.refresh(outdated_only, None, limit, steam_from)?;
|
||||||
|
|
||||||
|
|
Reference in a new issue