Jesús García Crespo
Jesús García Crespo
Would it be a good idea to implement a `bingo generate` subcommand that does something like the following? ```shell tempdir=$(mktemp) env GOBIN=${tempdir} \ bingo get -l env PATH=${GOBIN}:${PATH} \ go...
That makes sense. I've tried the Makefile approach and it worked great. On the other hand, `//go:generate source ... && ...` didn't work but I should try again. It'd be...
The problem disappeared when `proxy_http_version 1.1` was set in Nginx. I looked at the traffic between Nginx and Gunicorn with Wireshark but I haven't found anything interesting other than I...
I've got a couple of ideas: - **New error values.** I wonder if cadence-client would benefit from the new [error values](https://go.googlesource.com/proposal/+/master/design/29934-error-values.md) added to the standard library? E.g., would it deprecate...
> I would like to see something to better manage waiting for activities that does not return any value. Adding a Future.Wait method seems like the most straightforward solution to...
From a convo in Slack, the user requests to make available **general helpers for creating clients and worker services**. I understand that most of the complexity origins in creating the...
For the record, this option was added to Cadence's client in https://github.com/uber-go/cadence-client/pull/1053. replayWorkflowActivity was updated in https://github.com/uber-go/cadence-client/pull/1088.
> Maybe this issue has fixed I don't think so, I've just tested against v3.2.38.
For your information, I've noticed that when going from v2.18.0 to v2.18.1that in the following snippet the #nosec directive is ignored: ```go err = os.MkdirAll(p, 0o775); if err != nil...
@tilgovi, will this work solve #1494?