Skip to content

Commit c2ec548

Browse files
chrore(gae): fix region tags for images thumbnailer in appengine/standard/images/api/ (#13051)
* chore(gae): rename regions in blobstore.py * chore(gae): rename regions in main.py
1 parent a2b7664 commit c2ec548

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

appengine/standard/images/api/blobstore.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
For more information, see README.md.
1919
"""
2020

21-
# [START all]
22-
# [START thumbnailer]
21+
# [START gae_images_api_blobstore]
22+
# [START gae_images_api_blobstore_thumbnailer]
2323
from google.appengine.api import images
2424
from google.appengine.ext import blobstore
2525

@@ -47,7 +47,7 @@ def get(self):
4747
self.error(404)
4848

4949

50-
# [END thumbnailer]
50+
# [END gae_images_api_blobstore_thumbnailer]
5151

5252

5353
class ServingUrlRedirect(webapp2.RequestHandler):
@@ -73,4 +73,4 @@ def get(self):
7373
app = webapp2.WSGIApplication(
7474
[("/img", Thumbnailer), ("/redirect", ServingUrlRedirect)], debug=True
7575
)
76-
# [END all]
76+
# [END gae_images_api_blobstore]

appengine/standard/images/api/main.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
For more information, see README.md.
1919
"""
2020

21-
# [START all]
22-
# [START thumbnailer]
21+
# [START gae_images_api_ndb]
22+
# [START gae_images_api_ndb_thumbnailer]
2323
from google.appengine.api import images
2424
from google.appengine.ext import ndb
2525

@@ -51,8 +51,8 @@ def get(self):
5151
self.error(404)
5252

5353

54-
# [END thumbnailer]
54+
# [END gae_images_api_ndb_thumbnailer]
5555

5656

5757
app = webapp2.WSGIApplication([("/img", Thumbnailer)], debug=True)
58-
# [END all]
58+
# [END gae_images_api_ndb]

0 commit comments

Comments
 (0)