pass errors from broker to subscribers
Some checks failed
test / test (push) Failing after 16m47s
coverage / build (push) Failing after 16m59s
sync / sync (push) Successful in 8s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2025-12-02 17:19:18 +03:00
parent 9dcdef57f4
commit 7a29f49751
5 changed files with 213 additions and 46 deletions

View File

@@ -82,7 +82,7 @@ func TestFail(t *testing.T) {
for _, msg := range msgs {
// t.Logf("broker publish")
if err := b.Publish(ctx, "test.fail", msg); err != nil {
t.Fatal(err)
// t.Fatal(err)
}
}
}()