Sezal Chug
Sezal Chug
>>> from langdetect import detect >>> detect("You are a noob.") 'so' >>> detect("b d") 'so' >>> detect("War doesn't show who's right, just who's left.") 'en' >>> detect("Bonjour, Mesdames.") 'fr' >>>...
Either of the following will error with an OverflowError: date value out of range: >>> pytz.timezone('Africa/Abidjan').localize(datetime(year=1, month=1, day=1)) # OverflowError: date value out of range >>> pytz.timezone('Africa/Abidjan').localize(datetime(year=9999, month=12, day=31)) #...
## Why make this change? Resolves #2662 ## What is this change? 1. Created the HttpUtilities with HttpClient already instantiated and basic details filled from Startup.cs 2. Using this httpClient,...
## Why make this change? Closes [#2534](https://github.com/Azure/data-api-builder/issues/2534) ## What is this change? This PR involves creating another parameter in the runtime config which defines the cache-ttl-seconds for the health endpoint....
The testing for Health Endpoint is failing for GraphQL and Rest calls with the error `One or more errors occurred. (No connection could be made because the target machine actively...
Try `QueryExecutor ` to optimize the SQL DB query instead of ``` using (SqlConnection connection = new(connectionString)) { try { SqlCommand command = new(query, connection); connection.Open(); SqlDataReader reader = command.ExecuteReader();...
Add Errors, Warning, and Information for logging statements for health endpoint
We need to introduce a caching behaviour in HealthCheck queries so that we dont need to bumbard the DB again and again and return our values from the health check...
Paralellisation of Health check calls: runtime.health.maxDop Based on the number in the config of Max-Dop we should run parellel threads which run the quries to DB simultaneously and reduce the...
Updates to the Health Check Endpoint - Remove Health check from when entities.{entity}.source.type = "stored-procedure" do not allow entities.{entity}.health at all - Enable Hot-Reload of Health check parameters - Paralellisation...