Skip to content

Commit 45800df

Browse files
abhinav-qlogicsduskis
authored andcommitted
---
yaml --- r: 32193 b: refs/heads/autosynth-dialogflow c: 661e461 h: refs/heads/master i: 32191: dce3a89
1 parent 930b0bf commit 45800df

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ refs/heads/autosynth-bigtable: 2a6af7e2959fd79c99b8ca5d773f29a6434b546d
128128
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
129129
refs/heads/autosynth-containeranalysis: 18d210f81f17cf74864d0db2c29e834302f74f2a
130130
refs/heads/autosynth-datastore: f1efc3dc465174f41041acd56cf29badcec3e5bd
131-
refs/heads/autosynth-dialogflow: 080b6be2af3922c8c2a2ff8702b3bb49f7622972
131+
refs/heads/autosynth-dialogflow: 661e461ee6ccf957bb8741cb807c6f63be4ce69f
132132
refs/heads/autosynth-errorreporting: 3f176c20b55dfaaa8fc32f28d82b31784b93e636
133133
refs/heads/autosynth-firestore: 983c75e4fb1076502c8cac73ef0538bdb10884f3
134134
refs/heads/autosynth-iot: 4025d1804241e74d54950a324dc4f667aeaad4b3

branches/autosynth-dialogflow/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)