From 0595fbc651a19c6c46f37ceffaafab75f40257c9 Mon Sep 17 00:00:00 2001 From: James Magahern Date: Fri, 29 Aug 2025 23:19:14 -0600 Subject: [PATCH] This ended up being pebkac --- utilities/src/bin/snoozer.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/utilities/src/bin/snoozer.rs b/utilities/src/bin/snoozer.rs index ce86f56..28f6c6c 100644 --- a/utilities/src/bin/snoozer.rs +++ b/utilities/src/bin/snoozer.rs @@ -49,9 +49,7 @@ async fn main() -> Result<(), Box> { let auth_store = InMemoryAuthenticationStore::new(Some(credentials.clone())); let mut client = HTTPAPIClient::new(server_url, auth_store); - - // Kick auth... this is bad. Update monitor should do this. - _ = client.get_conversations().await?; + let _ = client.authenticate(credentials).await?; // Open event socket let event_socket = client.open_event_socket(None).await?;