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

chore(lib): increase refreash time for lib cache #3149

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
4 changes: 3 additions & 1 deletion jobs/pingcap/aa_folder.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ folder('pingcap') {
// If checked, versions fetched using this library will be cached on the controller.
cachingConfiguration {
// Determines the amount of time until the cache is refreshed.
refreshTimeMinutes(60)
refreshTimeMinutes(1440)
// Space separated list of versions to exclude from caching via substring search using .contains() method.
excludedVersionsStr('feature/ fix/ bugfix/')
//Space separated list of versions to include to allow caching via substring search using .contains() method. Ex: "release/ master".
includedVersionsStr('main')
}
// A default version of the library to load if a script does not select another.
defaultVersion('main')
Expand Down