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:
@ -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() {
|
||||
|
Reference in New Issue
Block a user