Adrian Lungu
Adrian Lungu
Hello, Thank you for the quick reply! It might be a bigger change than that, I'll try to look into it. Basically, when `trial_end` is in the future, the `status`...
Hey, thanks for merging it! There seems to be an issue somewhere as I'm getting the following: ``` localstripe_1 | Error handling request localstripe_1 | Traceback (most recent call last):...
@darccio from what I can tell, `defaultPrefixes` are only being checked for `ec2` hostnames, while `http://169.254.169.254/computeMetadata/v1/instance/hostname` is a `gce` metadataURL. I'm not sure how that applies here. In `/internal/hostname/providers.go` we...
Hello! Thanks for the log, I'll take a look to see what's going on.
As a quick workaround, one could do: ``` func (r Query) DoThings(ctx context.Context) (*MyResult, error) { graphql.AddError(ctx, gqlerror.Errorf("some non-fatal errors occured")) return &MyResult{"Partial data"}, nil } ``` To return both,...
@bradhe yes, I have a `cmd/generate/main.go` file in which I have the code that loads the gqlgen codegen config, and calls `api.Generate`; in there, I added the following import ```...
I've actually had the same issue, but afterwards realized it's not an issue, just not explicitly explained anywhere. Under the Image Preview, you should have 2 small images where you...
Hey @H--o-l , Thanks for the quick reply and the insight into the project. I took a look but it seems this might be a bigger change than I anticipated...
What do you guys think of this as the ResponseHeader regex ? ``` ^Response( (\d+?))?( \((.+?)\))?: ([^\s]+)?(.\s*?\[((.|\s)*?)\])? ``` It should keep existing response headers working as previously while allowing to...
That sounds like it might be a permissions issue; is the executable placed in a folder where it may not have access to change files ? Could you also try...