in src/WebJobs.Extensions.OpenAI.Kusto/KustoSearchProvider.cs [43:54]
public void Dispose()
{
foreach ((ICslQueryProvider client, _) in this.kustoQueryClients.Values)
{
client.Dispose();
}
foreach ((IKustoIngestClient client, _) in this.kustoIngestClients.Values)
{
client.Dispose();
}
}