Skip to content

Commit dc29ab7

Browse files
committed
Add person durable object and updates
1 parent a78010f commit dc29ab7

4 files changed

Lines changed: 765 additions & 45 deletions

File tree

src/extractors.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ mod tests {
772772
use serde_json::{json, Value};
773773
use std::{io::Write, sync::Arc, time::Duration};
774774

775-
use crate::{models::CaptureRequest, pipeline::PipelineClient, AppState};
775+
use crate::{models::CaptureRequest, pipeline::PipelineClient, persons::NoopPersonStore, AppState};
776776
use reqwest::Url;
777777

778778
fn test_state() -> AppState {
@@ -788,6 +788,7 @@ mod tests {
788788
decide_api_token: None,
789789
session_recording_endpoint: None,
790790
signing_secret: None,
791+
person_store: Arc::new(NoopPersonStore),
791792
}
792793
}
793794

0 commit comments

Comments
 (0)