Skip to content

Commit 7187f6b

Browse files
abhinav-qlogicsduskis
authored andcommitted
---
yaml --- r: 30905 b: refs/heads/autosynth-bigquerydatatransfer c: 661e461 h: refs/heads/master i: 30903: 6fc6870
1 parent 2959543 commit 7187f6b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

  • branches/autosynth-bigquerydatatransfer/google-cloud-examples/src/test/java/com/google/cloud/examples/pubsub/snippets

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ refs/tags/v0.68.0: 9cc799fcf68c82ab431d425fefa58ef615ce8e5b
122122
refs/tags/v0.69.0: 78f67a29e8b9c46ba01de566a2eae0fd1c03edea
123123
refs/heads/autosynth-asset: bdb45634a0fe8f7a510692b56b31f5312e25f453
124124
refs/heads/autosynth-automl: 22f9dd5b6f5df8dbfa7da0126864d565229519b2
125-
refs/heads/autosynth-bigquerydatatransfer: 080b6be2af3922c8c2a2ff8702b3bb49f7622972
125+
refs/heads/autosynth-bigquerydatatransfer: 661e461ee6ccf957bb8741cb807c6f63be4ce69f
126126
refs/heads/autosynth-bigquerystorage: d2c53da3b012e38c662e4df0738042435f19365f
127127
refs/heads/autosynth-bigtable: 9e5429f45cf9face9fed585d0233534993e36b58
128128
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca

branches/autosynth-bigquerydatatransfer/google-cloud-examples/src/test/java/com/google/cloud/examples/pubsub/snippets/ITPubSubSnippets.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import com.google.cloud.pubsub.v1.Publisher;
2828
import com.google.cloud.pubsub.v1.SubscriptionAdminClient;
2929
import com.google.cloud.pubsub.v1.TopicAdminClient;
30+
import com.google.common.util.concurrent.MoreExecutors;
3031
import com.google.pubsub.v1.ProjectSubscriptionName;
3132
import com.google.pubsub.v1.ProjectTopicName;
3233
import com.google.pubsub.v1.PubsubMessage;
@@ -92,7 +93,8 @@ public void onSuccess(String messageId) {
9293
public void onFailure(Throwable t) {
9394
done.setException(t);
9495
}
95-
});
96+
},
97+
MoreExecutors.directExecutor());
9698
done.get();
9799
} finally {
98100
if (publisher != null) {

0 commit comments

Comments
 (0)