Changeset 513


Ignore:
Timestamp:
03/08/08 12:41:31 (16 years ago)
Author:
bastiaans
Message:

jobmond/jobmond.py:

  • fix: down/na metrics should be string not int
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jobmond/jobmond.py

    r512 r513  
    505505                                        offline_nodes.append( name )
    506506
    507                         self.dp.multicastGmetric( 'MONARCH-DOWN'   , str( downed_nodes ),  'uint32', 'jobs' )
    508                         self.dp.multicastGmetric( 'MONARCH-OFFLINE', str( offline_nodes ), 'uint32', 'jobs' )
     507                        self.dp.multicastGmetric( 'MONARCH-DOWN'   , string.join( downed_nodes,  ',' ) )
     508                        self.dp.multicastGmetric( 'MONARCH-OFFLINE', string.join( offline_nodes, ',' ) )
    509509
    510510                # Now let's spread the knowledge
Note: See TracChangeset for help on using the changeset viewer.