Chris Broadfoot
Chris Broadfoot
Ah, omitting the trailing slash from node_modules did the trick.
Could also parse the revision from the URL: `https://deploy.cloud.run/GoogleCloudPlatform/cloud-run-button/tree/master/cmd` ---> `deploy.cloud.run/?git_repo=https://github.com/GoogleCloudPlatform/cloud-run-button&revision=master&dir=master/cmd` edit: yep, crossed paths there. I think using the exact same referrer logic would work nicely.
1.11 beta is released, postgres should just work™️ now, using the Unix socket: /cloudsql/ Woohoo! It looks like we don't have samples/docs for this feature yet, though
Exactly. We should paginate. That other page that lists all packages should be paginated, anyway!
What are the weird error messages? I'd rather fix those than add a check that has implications on whether a program crashes or not. On Tue, Nov 26, 2019, 12:01...
Yeah, perhaps panic is the correct thing to do.
Actually, thinking back on it, `aetest` shouldn't crash here. `appengine.ModuleName` needs to properly handle being called from a unit test.
Exactly right, @mdempsky. That said, with the second generation beta runtime (go1.11), I believe it's technically possible to construct a valid App Engine context with just an *http.Request, without requiring...
Yes, you must use appengine.Main if you want to use the packages under google.golang.org/appengine. You don't have to use those packages, though. On Thu, Jul 18, 2019, 3:28 PM emirhosseini...