diff --git a/src/bin/simulation.rs b/src/bin/simulation.rs index dac46ec..63b1bae 100644 --- a/src/bin/simulation.rs +++ b/src/bin/simulation.rs @@ -199,10 +199,6 @@ pub async fn main() { } } - // Have Troll Patrol run its update process so we have a negative - // report key for tomorrow - tp_net_test.request("/update".to_string(), vec![]).await; - // Advance LA's time to tomorrow la_net_test .request( diff --git a/src/request_handler.rs b/src/request_handler.rs index 04489ef..f2a6d2f 100644 --- a/src/request_handler.rs +++ b/src/request_handler.rs @@ -33,7 +33,14 @@ pub async fn handle(db: &Db, req: Request
) -> Result