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
6 changes: 3 additions & 3 deletions pkg/release-controller/release_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ func (r *ExecReleaseInfo) GetFeatureChildren(featuresList []string, validityPeri
return "", fmt.Errorf("unable to communicate with Jira")
}

ticker := time.NewTicker(5 * time.Second)
ticker := time.NewTicker(20 * time.Second)
defer ticker.Stop()

for _, feature := range featuresList {
Expand Down Expand Up @@ -770,7 +770,7 @@ func (r *ExecReleaseInfo) GetIssuesWithChunks(issues []string) (result []jiraBas
var buf bytes.Buffer
var invalidIDs []string

ticker := time.NewTicker(5 * time.Second)
ticker := time.NewTicker(20 * time.Second)
defer ticker.Stop()

for _, parts := range dividedIssues {
Expand Down Expand Up @@ -872,7 +872,7 @@ func (r *ExecReleaseInfo) GetIssuesWithDemoLink(issues []string) (result []jiraB
var mu sync.Mutex
var buf bytes.Buffer

ticker := time.NewTicker(5 * time.Second)
ticker := time.NewTicker(20 * time.Second)
defer ticker.Stop()

for _, parts := range dividedIssues {
Expand Down