Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add continuous export #949

Merged
merged 17 commits into from
Nov 26, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
[checks] use a shorter error line to pass err113 golangci check
Yup, it ends up checking for the line length.  132 columns are
back!!?! (http://www.righto.com/2019/01/accounting-machines-ibm-1403-and-why.html)
arielshaqed committed Nov 25, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 4871e4931f70abeaa7429874e5ffb3e471635511
2 changes: 1 addition & 1 deletion export/export.go
Original file line number Diff line number Diff line change
@@ -135,7 +135,7 @@ func hasContinuousExport(c catalog.Cataloger, repo, branch string) (bool, error)
return false, nil
}
if err != nil {
return false, fmt.Errorf("check whether export configuration is continuous for repo %s branch %s: %w", repo, branch, err)
return false, fmt.Errorf("check if export configuration is continuous for repo %s branch %s %w", repo, branch, err)
}
return exportConfiguration.IsContinuous, nil
}