Rafael Dantas Justo
Rafael Dantas Justo
Because abide library always write the snapshot file [here](https://github.com/beme/abide/blob/4c487ef9d895f5be7aabedffb11a2d7be36c86ef/abide.go#L102) when calling `abide.Cleanup()` the tests are never cached. Do we need to save those snapshots every time in the cleanup? ###...
When retrieving a binary response body, convert it to hexadecimal so we can safely add it to the snapshot file.
I would like to retrieve information of the database on a time variable using a specific format. The [Go-MySQL-Driver](https://github.com/go-sql-driver/mysql) uses the format ["2006-01-02 15:04:05"](https://github.com/go-sql-driver/mysql/blob/master/const.go#L14), and the go-testdb by default uses...
When all retries are exhausted the worker internal requests buffer needs to be cleared in failure scenarios. That is required because the `commitFunc` (and consequently the underlying `BulkService.Do` call) doesn't...
The `ingressClass` property is outdated and should be `ingressClassName` now: https://github.com/loft-sh/component-chart/blob/e974dae5470e5dbb873e799db0b7f265f2f2780f/templates/ingress.yaml#L78-L80 No default values are defined for it: https://github.com/loft-sh/component-chart/blob/e974dae5470e5dbb873e799db0b7f265f2f2780f/values.yaml#L19-L24
The existing [`WithIgnoreRequest`](https://github.com/DataDog/dd-trace-go/blob/v1.72.2/contrib/labstack/echo.v4/option.go#L103-L109) won't contain the response status code since [it's checked before the underlying controller is executed](https://github.com/DataDog/dd-trace-go/blob/v1.72.2/contrib/labstack/echo.v4/echotrace.go#L53-L56). Discussion https://github.com/DataDog/dd-trace-go/discussions/3341 ### What does this PR do? Adds a new `WithIgnoreResponse`...