Private
Public Access
1
0

This ended up being pebkac

This commit is contained in:
2025-08-29 23:19:14 -06:00
parent 44fa638b1c
commit 0595fbc651

View File

@@ -49,9 +49,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
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?;