-
Hi,
after some thorough testing with goroutines, I do not understand how the documentation can claim:
```
// client is safe for concurrent use as the fields are all read-only
// once the client…
-
The code is currently lacking recovery routines where it could crash (e.g. nil pointer exceptions). Since we start many goroutines at different points, we need to investigate a robust way to ensure th…
-
The `KeyManagementClient`s needs to be closed to avoid leaking goroutines;
* in `keys/google/google.go`; `Generate` and `Signer` functions
Currently tests fail when using Google KMS keys (`FLOW_WA…
-
Hi,
While performing my service's performance testing, I found a race condition in the `Connection Upgrade` flow.
Could you please have a look?
Thanks and have great weekend ahead!
-
### What version of Go are you using (`go version`)?
$ go version
1.21.3
### What did you do?
when collecting all goroutine call traces for debug purposes (e.g. using gops tool) one …
xaurx updated
3 months ago
-
Investigating memory usage increase for wge https://github.com/weaveworks/weave-gitops-enterprise/issues/3189
We have found that when enabled explorer we have a likely leak of goroutines as we see …
-
Ive been working on trying to make sure that ipfs doesnt have any memory leaks and ive been finding leaks coming from msgio routines not closing properly. I just wanted to file an issue for the formal…
-
Describe the problem
Part of https://github.com/cockroachdb/cockroach/issues/110432 - after adding buffered sender, we can now add unbuffered registrations with no long-running goroutines.
Epic…
-
Panic in goroutines other than the main one cannot be recovered explicitly, they have to be handled in the goroutine itself[1].
For ConTest this means that if a test step or any other plugin has a go…
-
I want to use `GetBulk` to fetch data, which fetches multiple keys concurrently. But the source code of this function use only 4 worker goroutines to fetch concurrently, I think the count is `len(kdm)…