@@ -303,7 +303,7 @@ private <ReqT, RowT> ServerStreamingCallable<ReadRowsRequest, RowT> createReadRo
303303 public Map <String , String > extract (ReadRowsRequest readRowsRequest ) {
304304 return ImmutableMap .of (
305305 "table_name" , readRowsRequest .getTableName (),
306- "app_profile " , readRowsRequest .getAppProfileId ());
306+ "app_profile_id " , readRowsRequest .getAppProfileId ());
307307 }
308308 })
309309 .build (),
@@ -360,7 +360,7 @@ public Map<String, String> extract(
360360 SampleRowKeysRequest sampleRowKeysRequest ) {
361361 return ImmutableMap .of (
362362 "table_name" , sampleRowKeysRequest .getTableName (),
363- "app_profile " , sampleRowKeysRequest .getAppProfileId ());
363+ "app_profile_id " , sampleRowKeysRequest .getAppProfileId ());
364364 }
365365 })
366366 .build (),
@@ -394,7 +394,7 @@ private UnaryCallable<RowMutation, Void> createMutateRowCallable() {
394394 public Map <String , String > extract (MutateRowRequest mutateRowRequest ) {
395395 return ImmutableMap .of (
396396 "table_name" , mutateRowRequest .getTableName (),
397- "app_profile " , mutateRowRequest .getAppProfileId ());
397+ "app_profile_id " , mutateRowRequest .getAppProfileId ());
398398 }
399399 })
400400 .build (),
@@ -507,7 +507,7 @@ private UnaryCallable<MutateRowsRequest, Void> createMutateRowsBaseCallable() {
507507 public Map <String , String > extract (MutateRowsRequest mutateRowsRequest ) {
508508 return ImmutableMap .of (
509509 "table_name" , mutateRowsRequest .getTableName (),
510- "app_profile " , mutateRowsRequest .getAppProfileId ());
510+ "app_profile_id " , mutateRowsRequest .getAppProfileId ());
511511 }
512512 })
513513 .build (),
@@ -549,7 +549,7 @@ public Map<String, String> extract(
549549 CheckAndMutateRowRequest checkAndMutateRowRequest ) {
550550 return ImmutableMap .of (
551551 "table_name" , checkAndMutateRowRequest .getTableName (),
552- "app_profile " , checkAndMutateRowRequest .getAppProfileId ());
552+ "app_profile_id " , checkAndMutateRowRequest .getAppProfileId ());
553553 }
554554 })
555555 .build (),
@@ -583,7 +583,7 @@ private UnaryCallable<ReadModifyWriteRow, Row> createReadModifyWriteRowCallable(
583583 public Map <String , String > extract (ReadModifyWriteRowRequest request ) {
584584 return ImmutableMap .of (
585585 "table_name" , request .getTableName (),
586- "app_profile " , request .getAppProfileId ());
586+ "app_profile_id " , request .getAppProfileId ());
587587 }
588588 })
589589 .build (),
0 commit comments