@@ -303,7 +303,7 @@ private <ReqT, RowT> ServerStreamingCallable<ReadRowsRequest, RowT> createReadRo
303
303
public Map <String , String > extract (ReadRowsRequest readRowsRequest ) {
304
304
return ImmutableMap .of (
305
305
"table_name" , readRowsRequest .getTableName (),
306
- "app_profile " , readRowsRequest .getAppProfileId ());
306
+ "app_profile_id " , readRowsRequest .getAppProfileId ());
307
307
}
308
308
})
309
309
.build (),
@@ -360,7 +360,7 @@ public Map<String, String> extract(
360
360
SampleRowKeysRequest sampleRowKeysRequest ) {
361
361
return ImmutableMap .of (
362
362
"table_name" , sampleRowKeysRequest .getTableName (),
363
- "app_profile " , sampleRowKeysRequest .getAppProfileId ());
363
+ "app_profile_id " , sampleRowKeysRequest .getAppProfileId ());
364
364
}
365
365
})
366
366
.build (),
@@ -394,7 +394,7 @@ private UnaryCallable<RowMutation, Void> createMutateRowCallable() {
394
394
public Map <String , String > extract (MutateRowRequest mutateRowRequest ) {
395
395
return ImmutableMap .of (
396
396
"table_name" , mutateRowRequest .getTableName (),
397
- "app_profile " , mutateRowRequest .getAppProfileId ());
397
+ "app_profile_id " , mutateRowRequest .getAppProfileId ());
398
398
}
399
399
})
400
400
.build (),
@@ -507,7 +507,7 @@ private UnaryCallable<MutateRowsRequest, Void> createMutateRowsBaseCallable() {
507
507
public Map <String , String > extract (MutateRowsRequest mutateRowsRequest ) {
508
508
return ImmutableMap .of (
509
509
"table_name" , mutateRowsRequest .getTableName (),
510
- "app_profile " , mutateRowsRequest .getAppProfileId ());
510
+ "app_profile_id " , mutateRowsRequest .getAppProfileId ());
511
511
}
512
512
})
513
513
.build (),
@@ -549,7 +549,7 @@ public Map<String, String> extract(
549
549
CheckAndMutateRowRequest checkAndMutateRowRequest ) {
550
550
return ImmutableMap .of (
551
551
"table_name" , checkAndMutateRowRequest .getTableName (),
552
- "app_profile " , checkAndMutateRowRequest .getAppProfileId ());
552
+ "app_profile_id " , checkAndMutateRowRequest .getAppProfileId ());
553
553
}
554
554
})
555
555
.build (),
@@ -583,7 +583,7 @@ private UnaryCallable<ReadModifyWriteRow, Row> createReadModifyWriteRowCallable(
583
583
public Map <String , String > extract (ReadModifyWriteRowRequest request ) {
584
584
return ImmutableMap .of (
585
585
"table_name" , request .getTableName (),
586
- "app_profile " , request .getAppProfileId ());
586
+ "app_profile_id " , request .getAppProfileId ());
587
587
}
588
588
})
589
589
.build (),
0 commit comments