state: Properly propagate errors when persisting state
This commit is contained in:
@ -121,7 +121,9 @@ async fn main() -> anyhow::Result<()> {
|
||||
|
||||
if state_ts != max_ts {
|
||||
info!("updating state from {} to {}", state_ts, max_ts);
|
||||
state_db.set(feed.uri.as_str(), max_ts).await;
|
||||
state_db.set(feed.uri.as_str(), max_ts).await.unwrap_or_else(|e| {
|
||||
error!("Failed to set state: {e:?}. continuing...");
|
||||
});
|
||||
debug!("State update complete");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user