Activity log for bug #1639339

Date Who What changed Old value New value Message
2016-11-04 19:54:54 Richard G. Pioso bug added bug
2016-11-04 19:55:03 Richard G. Pioso python-dracclient: assignee Richard G. Pioso (richard.pioso)
2016-11-04 19:55:14 Richard G. Pioso python-dracclient: status New In Progress
2016-11-04 21:18:03 Richard G. Pioso description Seen in stable/newton. The python-dracclient job resource's JobManagement.get_job() causes a FutureWarning. When that function is called, the following is output. /usr/lib/python2.7/site-packages/dracclient/resources/job.py:103: FutureWarning: The behavior of this method will change in future versions. Use specific 'len(elem)' or 'elem is not None' test instead. if drac_job: The fix is straightforward. Change the line to if drac_job is not None: The python-dracclient job resource's JobManagement.get_job() causes a FutureWarning. When that function is called, the following is output. /usr/lib/python2.7/site-packages/dracclient/resources/job.py:103: FutureWarning: The behavior of this method will change in future versions. Use specific 'len(elem)' or 'elem is not None' test instead.   if drac_job: The fix is straightforward. Change the line to   if drac_job is not None:
2016-11-06 13:03:19 OpenStack Infra python-dracclient: status In Progress Fix Released