Results 8 comments of Nima Jalali

We needed a solution that worked on App Engine. AFAIK we can't modify the system certs on App Engine. So we extended the RootCAs in Go by overriding the http...

@gmark-newt You can create a type that implements the json.Marshaler and json.Unmarshaler interfaces. Warning untested code ahead! ``` const SFTIMEFORMAT = "2006-01-02T15:04:05.000-0700" type SFTime struct { time.Time } // MarshalJSON...

App Engine Standard requires you to use the URL Fetch service to make HTTP requests. https://cloud.google.com/appengine/docs/standard/go/issue-requests Unfortunately go-force doesn't support swapping out the Default HTTP Transport. The easiest way to...

@nagaraja-sv Good news! With the new go111 runtime on App Engine Standard you should be able to do this. https://blog.golang.org/appengine-go111

Thread safety needs to be implemented as the resources that need updating are map objects.

I'm able to reproduce this error even when `send_interrupt` is set to true. There seems to be a race condition when shutting down air using Ctrl+c. When air is running...

@christopherhesse Do you have any cycles to implement support for 1.8?

@kwilczynski Answered questions below: - Removing the tags block from the template does succeed in `us-east-1`. Mentioned under Important Factoids section in original issue. - Without removing the tags block...