Skip to content

Commit 8f24646

Browse files
yoshi-automationandrey-qlogic
authored andcommitted
---
yaml --- r: 22911 b: refs/heads/autosynth-bigtable c: 304fccf h: refs/heads/master i: 22909: a13358d 22907: b175f42 22903: b55cf1a 22895: aeef66d 22879: 9a5c9a7 22847: 031489e 22783: 7d6eaac
1 parent 89a75e8 commit 8f24646

14 files changed

Lines changed: 42 additions & 18 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ refs/heads/autosynth-asset: 7d535c3023644faa89492d4a553d8c403e073fa7
124124
refs/heads/autosynth-automl: 7fcabb1e54ca9ded6bec10f41590d29ece3a6367
125125
refs/heads/autosynth-bigquerydatatransfer: d88aa5aae5fd9d3c6d75bbab1a05162c6d4d948f
126126
refs/heads/autosynth-bigquerystorage: d2c53da3b012e38c662e4df0738042435f19365f
127-
refs/heads/autosynth-bigtable: 8ec22d8221978381e443c9a58ef47467290d5a04
127+
refs/heads/autosynth-bigtable: 304fccf6acce10658950aab696cdc35f9d612e59
128128
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
129129
refs/heads/autosynth-containeranalysis: 0f377286f60df2b6fd37c183bf170c68dc014cfb
130130
refs/heads/autosynth-datastore: 9acd400b484d6691a080c9152a331d88d24fefc1

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import com.google.api.gax.rpc.UnaryCallable;
3030
import com.google.cloud.dialogflow.v2.stub.AgentsStub;
3131
import com.google.cloud.dialogflow.v2.stub.AgentsStubSettings;
32+
import com.google.common.util.concurrent.MoreExecutors;
3233
import com.google.longrunning.Operation;
3334
import com.google.longrunning.OperationsClient;
3435
import com.google.protobuf.Empty;
@@ -948,7 +949,8 @@ public static ApiFuture<SearchAgentsPagedResponse> createAsync(
948949
public SearchAgentsPagedResponse apply(SearchAgentsPage input) {
949950
return new SearchAgentsPagedResponse(input);
950951
}
951-
});
952+
},
953+
MoreExecutors.directExecutor());
952954
}
953955

954956
private SearchAgentsPagedResponse(SearchAgentsPage page) {

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ContextsClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import com.google.api.gax.rpc.UnaryCallable;
2828
import com.google.cloud.dialogflow.v2.stub.ContextsStub;
2929
import com.google.cloud.dialogflow.v2.stub.ContextsStubSettings;
30+
import com.google.common.util.concurrent.MoreExecutors;
3031
import com.google.protobuf.Empty;
3132
import java.io.IOException;
3233
import java.util.List;
@@ -797,7 +798,8 @@ public static ApiFuture<ListContextsPagedResponse> createAsync(
797798
public ListContextsPagedResponse apply(ListContextsPage input) {
798799
return new ListContextsPagedResponse(input);
799800
}
800-
});
801+
},
802+
MoreExecutors.directExecutor());
801803
}
802804

803805
private ListContextsPagedResponse(ListContextsPage page) {

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EntityTypesClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import com.google.api.gax.rpc.UnaryCallable;
3030
import com.google.cloud.dialogflow.v2.stub.EntityTypesStub;
3131
import com.google.cloud.dialogflow.v2.stub.EntityTypesStubSettings;
32+
import com.google.common.util.concurrent.MoreExecutors;
3233
import com.google.longrunning.Operation;
3334
import com.google.longrunning.OperationsClient;
3435
import com.google.protobuf.Empty;
@@ -1924,7 +1925,8 @@ public static ApiFuture<ListEntityTypesPagedResponse> createAsync(
19241925
public ListEntityTypesPagedResponse apply(ListEntityTypesPage input) {
19251926
return new ListEntityTypesPagedResponse(input);
19261927
}
1927-
});
1928+
},
1929+
MoreExecutors.directExecutor());
19281930
}
19291931

19301932
private ListEntityTypesPagedResponse(ListEntityTypesPage page) {

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/IntentsClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import com.google.api.gax.rpc.UnaryCallable;
3030
import com.google.cloud.dialogflow.v2.stub.IntentsStub;
3131
import com.google.cloud.dialogflow.v2.stub.IntentsStubSettings;
32+
import com.google.common.util.concurrent.MoreExecutors;
3233
import com.google.longrunning.Operation;
3334
import com.google.longrunning.OperationsClient;
3435
import com.google.protobuf.Empty;
@@ -1211,7 +1212,8 @@ public static ApiFuture<ListIntentsPagedResponse> createAsync(
12111212
public ListIntentsPagedResponse apply(ListIntentsPage input) {
12121213
return new ListIntentsPagedResponse(input);
12131214
}
1214-
});
1215+
},
1216+
MoreExecutors.directExecutor());
12151217
}
12161218

12171219
private ListIntentsPagedResponse(ListIntentsPage page) {

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionEntityTypesClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import com.google.api.gax.rpc.UnaryCallable;
2828
import com.google.cloud.dialogflow.v2.stub.SessionEntityTypesStub;
2929
import com.google.cloud.dialogflow.v2.stub.SessionEntityTypesStubSettings;
30+
import com.google.common.util.concurrent.MoreExecutors;
3031
import com.google.protobuf.Empty;
3132
import java.io.IOException;
3233
import java.util.List;
@@ -722,7 +723,8 @@ public static ApiFuture<ListSessionEntityTypesPagedResponse> createAsync(
722723
public ListSessionEntityTypesPagedResponse apply(ListSessionEntityTypesPage input) {
723724
return new ListSessionEntityTypesPagedResponse(input);
724725
}
725-
});
726+
},
727+
MoreExecutors.directExecutor());
726728
}
727729

728730
private ListSessionEntityTypesPagedResponse(ListSessionEntityTypesPage page) {

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import com.google.api.gax.rpc.UnaryCallable;
3030
import com.google.cloud.dialogflow.v2beta1.stub.AgentsStub;
3131
import com.google.cloud.dialogflow.v2beta1.stub.AgentsStubSettings;
32+
import com.google.common.util.concurrent.MoreExecutors;
3233
import com.google.longrunning.Operation;
3334
import com.google.longrunning.OperationsClient;
3435
import com.google.protobuf.Empty;
@@ -949,7 +950,8 @@ public static ApiFuture<SearchAgentsPagedResponse> createAsync(
949950
public SearchAgentsPagedResponse apply(SearchAgentsPage input) {
950951
return new SearchAgentsPagedResponse(input);
951952
}
952-
});
953+
},
954+
MoreExecutors.directExecutor());
953955
}
954956

955957
private SearchAgentsPagedResponse(SearchAgentsPage page) {

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ContextsClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import com.google.api.gax.rpc.UnaryCallable;
2828
import com.google.cloud.dialogflow.v2beta1.stub.ContextsStub;
2929
import com.google.cloud.dialogflow.v2beta1.stub.ContextsStubSettings;
30+
import com.google.common.util.concurrent.MoreExecutors;
3031
import com.google.protobuf.Empty;
3132
import java.io.IOException;
3233
import java.util.List;
@@ -831,7 +832,8 @@ public static ApiFuture<ListContextsPagedResponse> createAsync(
831832
public ListContextsPagedResponse apply(ListContextsPage input) {
832833
return new ListContextsPagedResponse(input);
833834
}
834-
});
835+
},
836+
MoreExecutors.directExecutor());
835837
}
836838

837839
private ListContextsPagedResponse(ListContextsPage page) {

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/DocumentsClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import com.google.api.gax.rpc.UnaryCallable;
3030
import com.google.cloud.dialogflow.v2beta1.stub.DocumentsStub;
3131
import com.google.cloud.dialogflow.v2beta1.stub.DocumentsStubSettings;
32+
import com.google.common.util.concurrent.MoreExecutors;
3233
import com.google.longrunning.Operation;
3334
import com.google.longrunning.OperationsClient;
3435
import com.google.protobuf.Empty;
@@ -735,7 +736,8 @@ public static ApiFuture<ListDocumentsPagedResponse> createAsync(
735736
public ListDocumentsPagedResponse apply(ListDocumentsPage input) {
736737
return new ListDocumentsPagedResponse(input);
737738
}
738-
});
739+
},
740+
MoreExecutors.directExecutor());
739741
}
740742

741743
private ListDocumentsPagedResponse(ListDocumentsPage page) {

branches/autosynth-bigtable/google-cloud-clients/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EntityTypesClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import com.google.api.gax.rpc.UnaryCallable;
3030
import com.google.cloud.dialogflow.v2beta1.stub.EntityTypesStub;
3131
import com.google.cloud.dialogflow.v2beta1.stub.EntityTypesStubSettings;
32+
import com.google.common.util.concurrent.MoreExecutors;
3233
import com.google.longrunning.Operation;
3334
import com.google.longrunning.OperationsClient;
3435
import com.google.protobuf.Empty;
@@ -1924,7 +1925,8 @@ public static ApiFuture<ListEntityTypesPagedResponse> createAsync(
19241925
public ListEntityTypesPagedResponse apply(ListEntityTypesPage input) {
19251926
return new ListEntityTypesPagedResponse(input);
19261927
}
1927-
});
1928+
},
1929+
MoreExecutors.directExecutor());
19281930
}
19291931

19301932
private ListEntityTypesPagedResponse(ListEntityTypesPage page) {

0 commit comments

Comments
 (0)