Simon
Simon
Hi mate! I'm a software engineer from Ozon Russia (big russian marketplace). We realy love your linter inside golangci-lint as we are able to check dependencies of projects. Unfortunately we...
This pr fixes bug when we were not able to get cancelation confirmation but connection is not marked as bad and returns to pool, so next time this connection is...
I discovered that in last version of minimock (v3.3.7) when we upped version of gowrap we broke generation of interfaces with generic unions. It happened because of this pr https://github.com/hexdigest/gowrap/pull/84...
In this pr i introduce 3 bugs/improvements: 1. We have to update gowrap when pr https://github.com/hexdigest/gowrap/pull/86 is merged, to fix generation of interfaces with unions and type approximations. 2. Improvement...
Hi @jackc! This is a big story of performance issue with PgBouncer. In highload systems there are many context cancelations. When context canceles , pgx closes connection asynchronously. And here...
Hey @hexdigest! This issue is related to https://github.com/gojuno/minimock/issues/87 and about this line of code https://github.com/hexdigest/gowrap/blob/master/generator/generator.go#L211 . If the main module last part and one of dependencies last part are the...
As described in https://github.com/gojuno/minimock/issues/106 . Should be updated and merged after https://github.com/hexdigest/gowrap/pull/89
In some cases you need to check if mocking methods are invoked in correct order. So the issue is to implement call order checking, something similar to gomock.Inorder .
In some cases, when you want to integrate minimock into other tooling, you need to use it as a library. We could refactor minimock so that parsing and executing could...