Skip to content

Commit c593c69

Browse files
chore(gae): rename regions in standard/multitenancy (#13047)
* chore(gae): rename region 'all' in datastore.py * chore(gae): rename region 'all' in memcache.py * chore(gae): rename region 'all' in taskqueue.py
1 parent f7de117 commit c593c69

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

appengine/standard/multitenancy/datastore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
For more information, see README.md.
2020
"""
2121

22-
# [START all]
22+
# [START gae_multitenancy_datastore]
2323
from google.appengine.api import namespace_manager
2424
from google.appengine.ext import ndb
2525
import webapp2
@@ -73,4 +73,4 @@ def get(self, namespace="default"):
7373
],
7474
debug=True,
7575
)
76-
# [END all]
76+
# [END gae_multitenancy_datastore]

appengine/standard/multitenancy/memcache.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
For more information, see README.md.
2020
"""
2121

22-
# [START all]
22+
# [START gae_multitenancy_memcache]
2323
from google.appengine.api import memcache
2424
from google.appengine.api import namespace_manager
2525
import webapp2
@@ -56,4 +56,4 @@ def get(self, namespace="default"):
5656
],
5757
debug=True,
5858
)
59-
# [END all]
59+
# [END gae_multitenancy_memcache]

appengine/standard/multitenancy/taskqueue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
For more information, see README.md.
2020
"""
2121

22-
# [START all]
22+
# [START gae_multitenancy_taskqueue]
2323
from google.appengine.api import namespace_manager
2424
from google.appengine.api import taskqueue
2525
from google.appengine.ext import ndb
@@ -91,4 +91,4 @@ def get(self, namespace="default"):
9191
],
9292
debug=True,
9393
)
94-
# [END all]
94+
# [END gae_multitenancy_taskqueue]

0 commit comments

Comments
 (0)