Skip to content

Commit d76dfcb

Browse files
authored
fix: add gae region tag (GoogleCloudPlatform#7350)
1 parent 37ee507 commit d76dfcb

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

‎appengine-java8/datastore/src/test/java/com/example/appengine/EntitiesTest.java‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ public void embeddedEntity_fromExisting_canRecover() throws Exception {
293293

294294
@Test
295295
public void batchOperations_putsEntities() {
296+
// [START gae_batch_operations]
296297
// [START batch_operations]
297298
Entity employee1 = new Entity("Employee");
298299
Entity employee2 = new Entity("Employee");
@@ -306,6 +307,7 @@ public void batchOperations_putsEntities() {
306307
List<Entity> employees = Arrays.asList(employee1, employee2, employee3);
307308
datastore.put(employees);
308309
// [END batch_operations]
310+
// [END gae_batch_operations]
309311

310312
Map<Key, Entity> got =
311313
datastore.get(Arrays.asList(employee1.getKey(), employee2.getKey(), employee3.getKey()));

0 commit comments

Comments
 (0)