Stephen Demjanenko
Stephen Demjanenko
I just got around to building and releasing a wrapped version of SSM Session Manager Plugin as a provider. It works in TF Cloud for both EKS + RDS: https://registry.terraform.io/providers/ComplyCo/aws-ssm-tunnels....
Ran into this as well. I wonder if it would be possible to catch this with a linter. Or perhaps some logic could check the schema against the cache's typePolicy...
I would love to see this feature. (Commenting to prevent closing due to staleness).
I think i got the defer order wrong. Its a last-in-first-out stack. I think that means the order of the defer execution is ``` gz.Close() c.Header("Content-Length", fmt.Sprint(c.Writer.Size())) gz.Reset(io.Discard) g.gzPool.Put(gz) ```...
I'm working on a test case: ```go func Test404WithGzip(t *testing.T) { req, _ := http.NewRequestWithContext(context.Background(), "GET", "/bar", nil) req.Header.Add(headerAcceptEncoding, "gzip") router := gin.New() router.Use(Gzip(DefaultCompression, WithDecompressFn(DefaultDecompressHandle))) router.GET("/foo", func(c *gin.Context) { c.String(200,...
This would be amazing. I wrote a custom provider to do exactly this, but there are some edge cases where a keepalive resource is needed to keep the tunnel alive...
@dm3ch yes, i am planning on switching to ephemeral once 1.10 hits GA. I am not certain that the lifecycle will be properly tracked (allowing removal of the keepalive resources)....
@TommyLeong I did not resolve the issue. Nonce is still not supported. It wouldn't be too hard to make a PR for it, but I never got around to it....
Given that insertions may be stored in a variable and that variable may be an empty array, I think knex should do the expected thing and return the same type...