in internal/kusto/ingest.go [28:41]
func (s ingestorBuildSettings) createQueryClient(
target KustoTargetOptions,
auth AuthOptions,
) (ingest.QueryClient, error) {
if s.CreateQueryClient != nil {
return s.CreateQueryClient(target, auth)
}
client, err := createKustoClient(target, auth)
if err != nil {
return nil, err
}
return client, nil
}