mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-22 20:31:19 +00:00
Update worker.rs
This commit is contained in:
parent
ebc2361f72
commit
dd54b8b107
1 changed files with 4 additions and 2 deletions
|
@ -37,7 +37,7 @@ use tokio_util::sync::CancellationToken;
|
||||||
use tracing::{debug, info, trace, warn};
|
use tracing::{debug, info, trace, warn};
|
||||||
|
|
||||||
/// Check whether to save state to db every n sends if there's no failures (during failures state is
|
/// Check whether to save state to db every n sends if there's no failures (during failures state is
|
||||||
/// saved after every attempt) This determines the batch size for loop_batch. After a batch ends and
|
/// saved after every attempt). This determines the batch size for loop_batch. After a batch ends and
|
||||||
/// SAVE_STATE_EVERY_TIME has passed, the federation_queue_state is updated in the DB.
|
/// SAVE_STATE_EVERY_TIME has passed, the federation_queue_state is updated in the DB.
|
||||||
static CHECK_SAVE_STATE_EVERY_IT: i64 = 100;
|
static CHECK_SAVE_STATE_EVERY_IT: i64 = 100;
|
||||||
/// Save state to db after this time has passed since the last state (so if the server crashes or is
|
/// Save state to db after this time has passed since the last state (so if the server crashes or is
|
||||||
|
@ -161,7 +161,9 @@ impl InstanceWorker {
|
||||||
id
|
id
|
||||||
} else {
|
} else {
|
||||||
// this is the initial creation (instance first seen) of the federation queue for this
|
// this is the initial creation (instance first seen) of the federation queue for this
|
||||||
// instance skip all past activities:
|
// instance
|
||||||
|
|
||||||
|
// skip all past activities:
|
||||||
self.state.last_successful_id = Some(latest_id);
|
self.state.last_successful_id = Some(latest_id);
|
||||||
// save here to ensure it's not read as 0 again later if no activities have happened
|
// save here to ensure it's not read as 0 again later if no activities have happened
|
||||||
self.save_and_send_state(pool).await?;
|
self.save_and_send_state(pool).await?;
|
||||||
|
|
Loading…
Reference in a new issue