async fn sync_pages(
conn: &mut PgConnection,
config: &SyncerConfig,
blob_client: &AzureBlobClient,
reported_permanently_failing_page_ids: &mut HashSet<Uuid>,
) -> Result<()>Expand description
Synchronizes pages to the chatbot backend.
reported_permanently_failing_page_ids carries the previously warned-about set across ticks so
the warning is emitted on change rather than on every sweep.