Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Go Reference](https://pkg.go.dev/badge/github.com/sebundefined/thebus/v1.svg)](https://pkg.go.dev/github.com/sebundefined/thebus/v1)
[![Build Status](https://github.com/sebundefined/thebus/actions/workflows/ci.yml/badge.svg)](https://github.com/sebudefined/thebus/actions/workflows/ci.yml)
[![Go Reference](https://pkg.go.dev/badge/github.com/sebundefined/thebus.svg)](https://pkg.go.dev/github.com/sebundefined/thebus)
[![Build Status](https://github.com/sebundefined/thebus/actions/workflows/ci.yml/badge.svg)](https://github.com/sebudefined/thebus/actions/workflows/release.yml)

# thebus
**thebus** is a lightweight message-oriented middleware that provides a dead-simple API for in-process pub/sub messaging.
Expand Down
2 changes: 1 addition & 1 deletion bus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ func TestRunFanOutDeliveredCounter(t *testing.T) {
return nil
})
// ugly, but no use of fancy libs for testing
timeout := time.After(1 * time.Second)
timeout := time.After(2 * time.Second)
tick := time.NewTicker(10 * time.Millisecond)
defer tick.Stop()
for {
Expand Down
Loading