Holger Freyther
Holger Freyther
There is a race condition. While we think serverA is primary it might have recently moved to serverB. We can't win this race on the client. Only the servers can.
Another issue is that some of the pooled Mongo instances are not closed. Leading to populate raising an exception about the external semaphores not being able to be registered.
With a session pool of max 10 entries I end up with 101 open Mongo connections during a stepdown from primary to the new primary. This seems to be due...
Simply adding "google.golang.org/grpc" to the _SHARED_REPOS doesn't do the trick as the name is not available because the isolated module has a direct dependency on that go module and then...
Observations when attempting to put "google.golang.org/grpc" into `_SHARED_REPOS`. 1. `use_repo(go_deps, "org_golang_google_grpc")` warns the repository is not defined. And that is correct as we skipped creating a go_repository for that name....
`bazel build @test_dep//...` from within `tests/bcr/go_mod`
> Good question, given [bazel-contrib/rules_go@077f15f](https://github.com/bazel-contrib/rules_go/commit/077f15fe11b9da6aa0e3271db1260929f04fef87) (which was reverted shortly after merged), I think @linzhp might know about this better. Empirically with gazelle=0.45.0 and rules_go=0.56.1: An empty (no content, just proto...
Running `go build -n -x ./main.go` the first occurrence of my debug statement is inside the modinfo statement of the `importcfg.link` and then this is passed to the linker via...
Rebased and I think it is sorted correctly. @fmeum PTAL
It's currently near impossible to use gazelle for something complex (e.g. attempt to build cortexmetrics). Is it an option to revert the naming changes or offer a global kill switch...