Skip to content

Commit

Permalink
try to repro
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Dec 16, 2024
1 parent 889a4da commit 4509cdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/runner/pubsub/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

func TestPubSub(t *testing.T) {
t.Skip("Skipping flaky test")
// t.Skip("Skipping flaky test")
calls := 20
events := calls * 10
in.Run(t,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ public class Subscriber {

@Subscription(topic = TestTopicTopic.class, from = FromOffset.BEGINNING)
void consume(PubSubEvent event) throws Exception {
Log.infof("Subscriber is consuming %s", event.getTime());
Log.infof("consume: %s", event.getTime());
}

@Subscription(topic = TestTopicTopic.class, from = FromOffset.LATEST)
void consumeFromLatest(PubSubEvent event) throws Exception {
Log.infof("consumeFromLatest: %s", event.getTime());
}

@Subscription(topic = Topic2Topic.class, from = FromOffset.BEGINNING)
Expand Down

0 comments on commit 4509cdb

Please sign in to comment.