Git Product home page Git Product logo

Comments (4)

zezaeoh avatar zezaeoh commented on June 30, 2024 1

i hope so, but It works fine normally.
so If I observe the symptoms one more time, then I will send you an additional report.

thanks for quick response :)

from api4jenkins.

joelee2012 avatar joelee2012 commented on June 30, 2024

hi, can you share your code and the log in debug mode , add following code in top of your code to enable debug mode

import logging
logging.basicConfig(level=logging.DEBUG)

from api4jenkins.

joelee2012 avatar joelee2012 commented on June 30, 2024

Ok, thanks for reporting issue๐Ÿ˜Š

from api4jenkins.

jakub1500 avatar jakub1500 commented on June 30, 2024

I had a similar issue, but was able to mitiagte it by catching the TypeError exception and trying once again to receive the build from the queue item. Some debug logs from my Jenkins instance with custom error message when the

  File "/usr/local/lib/python3.11/site-packages/api4jenkins/item.py", line 38, in func
    class_name = delimiter.split(item['_class'])[-1]
                                 ~~~~^^^^^^^^^^
TypeError: 'NoneType' object is not subscriptable

appears.

my code:

def get_build_from_queue_item(queue_item):
	while True:
            try:
                if queue_item.get_build():
                    break
            except TypeError as e:
                logging.error(f"Exception on retrieving a build from queue item. {e}")
            time.sleep(1)
	return queue_item.get_build()

logs with logging.DEBUG enabled:

DEBUG:api4jenkins.requester:GET: https://my-jenkins-instance.co.uk/queue/item/6908/api/json with parameters: {'headers': {'Jenkins-Crumb': 'my-jenkins-instance-crumb'},
 'params': {'depth': 0, 'tree': '_class'}}
DEBUG:api4jenkins.requester:Response: <Response [200]>
DEBUG:api4jenkins.requester:GET: https://my-jenkins-instance.co.uk/queue/item/6908/api/json with parameters: {'headers': {'Jenkins-Crumb': 'my-jenkins-instance-crumb'},
 'params': {'depth': 0, 'tree': 'executable[url]'}}
DEBUG:api4jenkins.requester:Response: <Response [200]>
ERROR:root:Exception on retrieving a build from queue item. 'NoneType' object is not subscriptable
DEBUG:api4jenkins.requester:GET: https://my-jenkins-instance.co.uk/queue/item/6908/api/json with parameters: {'headers': {'Jenkins-Crumb': 'my-jenkins-instance-crumb'},
 'params': {'depth': 0, 'tree': '_class'}}
DEBUG:api4jenkins.requester:Response: <Response [200]>
DEBUG:api4jenkins.requester:GET: https://my-jenkins-instance.co.uk/queue/item/6908/api/json with parameters: {'headers': {'Jenkins-Crumb': 'my-jenkins-instance-crumb'},
 'params': {'depth': 0, 'tree': 'executable[url]'}}
DEBUG:api4jenkins.requester:Response: <Response [200]>

python version: 3.11
api4jenkins version: 1.14

from api4jenkins.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.