Skip to content

Commit

Permalink
fix: use Started instead of listening
Browse files Browse the repository at this point in the history
To avoid breaking existing clients of Ryuk, using a custom Ryuk version with older testcontainers versions.
  • Loading branch information
mdelapenya committed Oct 9, 2024
1 parent a1f6d78 commit 4debda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reaper.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func newReaper(ctx context.Context, options ...reaperOption) (*reaper, error) {
return nil, fmt.Errorf("listen: %w", err)
}

r.logger.Info("listening", fieldAddress, r.listener.Addr().String())
r.logger.Info("Started", fieldAddress, r.listener.Addr().String())

return r, nil
}
Expand Down

0 comments on commit 4debda3

Please sign in to comment.