Skip to content

Commit

Permalink
feature: split writer to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
akurilov committed Aug 1, 2023
1 parent 67881a7 commit 9fb05e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func Test_MessageDelivery(t *testing.T) {
subIds = append(subIds, subId)
}
//
//time.Sleep(100 * time.Second) // wait for the cond/sub cache entries expiration
time.Sleep(100 * time.Second) // wait for the cond/sub cache entries expiration
//
var msgsWriter model.Writer[*pb.CloudEvent]
msgsWriter, err = client.OpenMessagesWriter(groupIdCtx, "test-user-1")
Expand Down Expand Up @@ -97,7 +97,7 @@ func Test_MessageDelivery(t *testing.T) {
for k, c := range cases {
t.Run(k, func(t *testing.T) {
//
ctx, cancel := context.WithTimeout(context.TODO(), 50*time.Second)
ctx, cancel := context.WithTimeout(context.TODO(), 1*time.Minute)
defer cancel()
var msgsReader model.Reader[[]*pb.CloudEvent]
msgsReader, err = client.OpenMessagesReader(ctx, "test-user-0", c.subId, 4)
Expand Down

0 comments on commit 9fb05e1

Please sign in to comment.