Custom Query (101 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 101)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#25 fixed global Names not defined bastiaans anonymous
Description

Hello,

in jobmond.py v0.2 two global variables are used but not defined. The attached patch fixes it. The first error:

Traceback (most recent call last):
  File "/usr/sbin/jobmond.py", line 816, in ?
    main()
  File "/usr/sbin/jobmond.py", line 811, in main
    gather.run()
  File "/usr/sbin/jobmond.py", line 341, in run
    self.jobs = self.getJobData( self.jobs )
  File "/usr/sbin/jobmond.py", line 530, in getJobData
    except PBSError:
NameError: global name 'PBSError' is not defined

And the second error:

Traceback (most recent call last):
  File "/usr/sbin/jobmond.py", line 819, in ?
    main()
  File "/usr/sbin/jobmond.py", line 814, in main
    gather.run()
  File "/usr/sbin/jobmond.py", line 341, in run
    self.jobs = self.getJobData( self.jobs )
  File "/usr/sbin/jobmond.py", line 532, in getJobData
    time.sleep( TORQUE_POLL_INTERVAL )
NameError: global name 'TORQUE_POLL_INTERVAL' is not defined

Regards,

Peter

#26 fixed stop_timestamp is not correct when only one job run. bastiaans alexis.michon@…
Description

When a job run alone on the cluster, stop_timestamp save in the database isn't correct.

Same job on the same cluster has a correct stop_timestamp when there is at least one other job running at the same time.

#27 fixed wrong display in web frontend bastiaans alexis.michon@…
Description

When we set $COLUMN_NODES to 1 in conf.php, the column node (in the web frontend) isn't filled correctly. In search.php, the variable which contains the nodes is not reset between each iteration and the first job is displayed with 1 node, the second with two, the third with three, etc...

Patch is attached

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.