MCPcopy Index your code
hub / github.com/git-lfs/git-lfs / Wait

Method Wait

tools/channels.go:19–27  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17}
18
19func (w *BaseChannelWrapper) Wait() error {
20 var multiErr error
21 for err := range w.errorChan {
22 // Combine in case multiple errors
23 multiErr = errors.Join(multiErr, err)
24 }
25
26 return multiErr
27}
28
29func NewBaseChannelWrapper(errChan <-chan error) *BaseChannelWrapper {
30 return &BaseChannelWrapper{errorChan: errChan}

Callers

nothing calls this directly

Calls 1

JoinFunction · 0.92

Tested by

no test coverage detected