MCPcopy Create free account
hub / github.com/compozy/agh / joinErrors

Function joinErrors

internal/registry/github/client.go:914–922  ·  view source on GitHub ↗
(errs ...error)

Source from the content-addressed store, hash-verified

912}
913
914func joinErrors(errs ...error) error {
915 filtered := make([]error, 0, len(errs))
916 for _, err := range errs {
917 if err != nil {
918 filtered = append(filtered, err)
919 }
920 }
921 return errors.Join(filtered...)
922}
923
924func sleepContext(ctx context.Context, wait time.Duration) error {
925 if wait <= 0 {

Callers 7

fetchLatestReleaseMethod · 0.70
fetchRequestedReleaseMethod · 0.70
fetchReleasePageMethod · 0.70
finalizeDownloadResponseFunction · 0.70
checkRateLimitMethod · 0.70
spoolDownloadResponseFunction · 0.70

Calls 1

appendFunction · 0.85

Tested by 1