Nguyen Thanh Minh

Results 4 issues of Nguyen Thanh Minh

### 📚 The doc issue No different time inferent when I change minWorkers, maxWorkers from 1 to 2 or 3. Three different worker give me a same time to handle...

### 📚 The doc issue I knew that the number of workers for my model should be smaller than the physical cores (in CPU mode). However, when I limit the...

triaged

First of all, I want to thank you for your implementation of the Circuit Breaker pattern. However, I noticed that the code doesn't support async operations (only for tornado) and...

help-wanted

```python # mysql.connector version 9.0.0 @timeout_decorator.timeout(timeout=5, timeout_exception=ConnectionError) def connect_database(self) -> None: connection = mysql.connector.connect( host=self.host, port=self.port, user=self.user, password=self.password, database=self.database, # default use_pure = False, ) ``` The code above doesn't...