← Back to team overview

python-jenkins-developers team mailing list archive

[Bug 1698815] Re: get_jobs fails when space in folder name

 

Fix proposed to branch: master
Review: https://review.openstack.org/504536

** Changed in: python-jenkins
       Status: New => In Progress

-- 
You received this bug notification because you are a member of Python
Jenkins Developers, which is subscribed to Python Jenkins.
https://bugs.launchpad.net/bugs/1698815

Title:
  get_jobs fails when space in folder name

Status in Python Jenkins:
  In Progress

Bug description:
  With cloudbees folders if you have a folder with a space in it, you
  will get the following error

  >>> server = jenkins.Jenkins('http://jenkinsmaster',
  username='username', password='password')

  >>> server.get_jobs(folder_depth=2)
  Traceback (most recent call last):
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/jenkins/__init__.py", line 551, in get_info
      Request(self._build_url(url))
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/jenkins/__init__.py", line 431, in jenkins_open
      response = urlopen(req, timeout=self.timeout).read()
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/urllib/request.py", line 223, in urlopen
      return opener.open(url, data, timeout)
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/urllib/request.py", line 532, in open
      response = meth(req, response)
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/urllib/request.py", line 642, in http_response
      'http', request, response, code, msg, hdrs)
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/urllib/request.py", line 570, in error
      return self._call_chain(*args)
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/urllib/request.py", line 504, in _call_chain
      result = func(*args)
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/urllib/request.py", line 650, in http_error_default
      raise HTTPError(req.full_url, code, msg, hdrs, fp)
  urllib.error.HTTPError: HTTP Error 400: Bad request

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/jenkins/__init__.py", line 765, in get_jobs
      return self.get_all_jobs(folder_depth=folder_depth)
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/jenkins/__init__.py", line 825, in get_all_jobs
      query=JOBS_QUERY)['jobs']))
    File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/jenkins/__init__.py", line 555, in get_info
      % self.server)
  jenkins.BadHTTPException: Error communicating with server[http://jenkinsmaster]

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-jenkins/+bug/1698815/+subscriptions


References