Hi,
I have used below code to get issue count for jql in jira by using python program
resp_json = jira.search_issues(real_jql, fields="*all",\
expand=expand,\
json_result=True,\
startAt=start_idx,\
maxResults=incr_idx,
validate_query=True)
i could able to see there is no problem in connecting with jira also when i run the jql in jira manually i am getting the issue tickets. Only issue is the count is not returning from search issues. It always coming as 0.