Samuel

Results 66 comments of Samuel

Just installed 0.12 today and the "ejs" version in use is still vulnerable to 3 CVEs, 1 of them being RCE. I pointed out the security issues in this thread...

Sorry for being unclear @notti Had a test script for my go-sqlite-dynamic repo, compiled it with just ‘go build’ and at runtime it threw that error, however ‘CGO_ENABLE=0 go build’...

Hopefully this will help to clarify, the code: ```go package main import ( "os" "fmt" "database/sql" "github.com/iamacarpet/go-sqlite3-dynamic" ) func main() { path := "test.db" f, err := os.Create(path) if err...

Alternatively, instead of writing the logs to the Stackdriver API synchronously which can be slow, App Engine allows you to write out to virtual "files" that automatically get passed to...

Thanks @steren , As one of these customers, we've managed to use the App Engine buildpack images to get running on GCR: Taken from: gcr.io/gae-runtimes/buildpacks/php74/builder https://github.com/a1comms/GaeSupportLaravel/blob/php7.4-laravel6.0/docs/examples/laravel/buildpack-cloud-run/cloudbuild_LIVE.yml It's a little frustrating...

Thanks @steren , really appreciate that! We’ve spoken a lot to Matt L about it too, but I get the impression his team don’t own these buildpacks either. Can you...

Looking around at this a little more, I wanted to check that even if the parentSpanId is passed through, it would be applied. Does this imply that it won't be?...

@BadChoice this usually implies a segfault Just logged one myself, #239

I should add, we are using both `Laravel::load()` and `PDO::load()` as some of the defaults in our library https://github.com/a1comms/GaeSupportlaravel They both run for us without issue on App Engine Standard...

:( looks like it isn't the blank callback, or at-least not just that. For a bit of context, I'm trying to automatically trace all the middleware in Laravel as we...