a7g4

Results 3 issues of a7g4

It doesn't seem like there is a way to delete users that have been removed from the OIDC endpoint? Am I missing something obvious?

I've been chasing down a weird crash and I think it's a race when a channel gets resized. The symptoms of the crash are an error message like this (sometimes...

Example test case: ``` TEST_F(ClientTest, CreatePublisherAutomaticResizeCreateSecondPublisher) { subspace::Client pub_client1; subspace::Client pub_client2; ASSERT_TRUE(pub_client1.Init(Socket()).ok()); ASSERT_TRUE(pub_client2.Init(Socket()).ok()); auto pub_client1_pub = *pub_client1.CreatePublisher("Channel5", 256, 8); pub_client1_pub.GetMessageBuffer(500); auto pub_client2_pub = *pub_client2.CreatePublisher("Channel5", 256, 8); // This fails }...