Skip to content
Merged
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
2 changes: 1 addition & 1 deletion await/await.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func (r *runner) Run(ctx context.Context) error {
// waitTimeout will return either when the context is canceled or when the
// counter reaches 0. It will check the counter every 10ms.
func waitOrTimeout(timeout time.Duration, counter *int32, err error) error {
slog.Info(fmt.Sprintf("await: waiting %s for subroutines to finish", timeout))
// slog.Info(fmt.Sprintf("await: waiting %s for subroutines to finish", timeout))
for i := 0 * time.Second; i < timeout; i += 100 * time.Millisecond {
if atomic.LoadInt32(counter) == 0 {
return err
Expand Down