1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-06 22:13:02 +02:00

Updates as requested

This commit is contained in:
Jay Patel
2021-03-03 12:52:56 +11:00
parent 9c2ab8f856
commit cac0fa9648
2 changed files with 6 additions and 4 deletions

View File

@ -15,7 +15,7 @@ func GetAllIssues(client *jira.Client, searchString string) ([]jira.Issue, error
var issues []jira.Issue
for {
opt := &jira.SearchOptions{
MaxResults: 1000, // Max results can go upto 1000
MaxResults: 1000, // Max results can go up to 1000
StartAt: last,
}
@ -34,7 +34,7 @@ func GetAllIssues(client *jira.Client, searchString string) ([]jira.Issue, error
return issues, nil
}
}
return issues, nil
}
func main() {