Ryan Brewster
Ryan Brewster
If you are using Chrome or Firefox, you may be running into a limit on the number of open connections (see https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events). > When not used over HTTP/2, SSE suffers...
I bisected this down to #1061 using this test: ``` if _, err := db.Exec("CREATE TABLE mytable (t TIMESTAMP)"); err != nil { panic(err) } if _, err := db.Exec("INSERT...
Dug into this a bit, I'm pretty sure that this was an unintended behavioral change. #1061 fixed the conversion of VARBINARY to properly generate `[]byte` instead of `string`, but failed...
@kyleconroy I have a fix for this here: https://github.com/kyleconroy/sqlc/pull/1649 Are you amenable to incremental approaches like that? If so I think I can very quickly close a bunch of related...
This is a really cool idea (and I'm glad you find security rules useful!). We are working on first-class support for this functionality (I often call this behavior "user impersonation",...
Is there a way to configure the behavior of `gazelle` depending on what version of `rules_go` it is being used with?
A few quick notes: - I think you can instruct gazelle to leave your hand-altered build targets alone by putting `# keep` after them. That might be a short-term workaround...
Looking at the documentation [here](https://github.com/bazelbuild/bazel-gazelle/blob/e7e69c49d5a43e9905dff40ed97379ae2b0b74a2/README.rst#L496) it seems like you can also add a ``` # gazelle:go_grpc_compilers ``` directive at the top of a BUILD file to tell gazelle how you...
``` gyp ERR! stack Error: self signed certificate in certificate chain ``` seems like an issue with your SSL certificates. Is `npm` able to install anything on your machine (e.g.,...
> I’m not sure if there are rules using this in the first place The main one I had in mind is [IgnoredReturnValue](https://detekt.github.io/detekt/potential-bugs.html#ignoredreturnvalue), which would be extremely helpful in catching...