You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
When I try to create a jira client:
class JiraClient(JIRA):
def __init__(self):
super(JiraClent, self).__init__(
options=JIRA_OPTS,
basic_auth=(JIRA_USERNAME, JIRA_PASSWORD)
)
JIRA_USERNAME = input('Username:')
JIRA_PASSWORD = getpass.getpass('Password:')
jira_client = JiraClient()
the error occurred:
requests.exceptions.SSLError: HTTPSConnectionPool(host='jira.xxx.com', port=443): Max retries exceeded with url: /rest/api/2/serverInfo (Caused by SSLError(SSLEOFError(8, '[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1000)')))
I know it should be a ssl issue, but I can not find the problem to solve it. So if anyone had the same problem and solved it, please tell me. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.