Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-09 Thread Joshua Smith
Indeed, there is no such account with any permission on that bucket. So there you have it. That’s probably what happened. (Doesn’t matter anymore for me, since I’m now using cloudstorage for uploads, not blobstore.) Google really botched this transition from appcfg to gcloud. -Joshua > On Oct

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-09 Thread 'Jose V' via Google App Engine
Hello, I have seen previous occurrences in which deploying with "gcloud app deploy" led to 50X errors when uploading to blobstore. It was indeed due to the App Engine Service account lacking permissions on the newly created Cloud Storage bucket. Note that by default, the Service account used by

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-08 Thread Will Reiher
I don't remember what the error code was anymore. I just knew that something was f'd. It was really a hunch that that new bucket was involved and that if my app didn't have permission it might be the answer. I was prepared for a very long day but after the permission change it all just started

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-08 Thread Joshua Smith
Do you recall if you got 500 errors? I’d expect that to generate 403’s. Regardless, that does sound like the kind of thing that happened. Switching to use cloudstorage instead of blobstore wasn’t too hard, so that’s the workaround I’d recommend for anyone else who hits this issue. I’m mostly ju

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-08 Thread Will Reiher
I had an issue a few weeks back. It was due to my transition to gcloud deploy. It created a new app-id.appspot.com bucket but my app engine service account did not have permissions. Once I gave it permission it started working again with the blobstore items showing up in the new "default" bucke

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-08 Thread 'barrado' via Google App Engine
Hi, I have deployed this Blobstore API sample service and it works well and allows me to successfully upload images. You could try to add further logging statements in your app to know wh

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-07 Thread Joshua Smith
Unfortunately, I used gcloud app deploy because appcfg.py stopped working a couple weeks ago. I did use curl and it revealed nothing. Just a terse 500 with no content from the server. > On Oct 6, 2020, at 4:14 PM, Charounson Saintilus > wrote: > > Hey Joshua, > > I don’t think I’m gonna be

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-06 Thread Charounson Saintilus
Hey Joshua, I don’t think I’m gonna be of much help here, but wanted to mention: if you think that running “gcloud app deploy” introduced the issue, can you try redeploying the application using appcfg.py? You could also use curl commands to troubleshoot the upload to blobstore.. Thanks, Char

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-06 Thread Joshua Smith
Sigh. I’ve gone ahead and re-coded my app to use cloudstorage instead of blobstore for new uploads. So this is no longer critical. (Thankfully, downloads have continued to work. If you break blobstore downloads, that’ll be a real problem for me.) The idea of using a cloud provider is they: 1.

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-06 Thread Joshua Smith
The problem persists. It occurs to me that last week was the first time I had to make a small update to the app in a while, and I did that using “gcloud app deploy” instead of appcfg.py for the first time on that project. Is it possible that pushing the app using gcloud introduced a problem up

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-06 Thread Joshua Smith
> On Oct 6, 2020, at 11:47 AM, 'Olu' via Google App Engine > wrote: > > I apologize for the delay or the impact this issue may be causing. For > swifter responses or help on issues that are urgent to you, I think it is > best to reach out directly to the GCP Support Engineers[2]. My readin

Re: [google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-06 Thread Joshua Smith
It pre-dated that issue, and it is continuing despite the larger outage being resolved. Please address this ASAP. Thanks. -Joshua > On Oct 6, 2020, at 11:47 AM, 'Olu' via Google App Engine > wrote: > > Hi, Joshua > > Thank you for reporting this issue. It seems you may be affected by an >

[google-appengine] Uploads to Legacy Blobstore are Failing with 500, nothing in the logs

2020-10-05 Thread Joshua Smith
There is a production issue in my app. (I’m happy to create a private production issue ticket, but I couldn’t figure out where to do that.) My app is still on Python 2.7 and uses the legacy blobstore. I use blobstore.create_upload_url('/upload’) to populate a form. This has been working fine fo