Skip to content

Commit

Permalink
Merge pull request #3368 from antonio-ledesma/newdev
Browse files Browse the repository at this point in the history
[v6r18] improved code quality via variable name change
  • Loading branch information
Andrei Tsaregorodtsev committed Jun 14, 2017
2 parents 056bc09 + 02254d6 commit c11bff0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WorkloadManagementSystem/Agent/JobAgent.py
Expand Up @@ -295,8 +295,8 @@ def execute( self ):

if 'BOINC_JOB_ID' in os.environ:
# Report BOINC environment
for p in ( 'BoincUserID', 'BoincHostID', 'BoincHostPlatform', 'BoincHostName' ):
jobReport.setJobParameter( p, gConfig.getValue( '/LocalSite/%s' % p, 'Unknown' ), sendFlag = False )
for thisp in ( 'BoincUserID', 'BoincHostID', 'BoincHostPlatform', 'BoincHostName' ):
jobReport.setJobParameter( thisp, gConfig.getValue( '/LocalSite/%s' % thisp, 'Unknown' ), sendFlag = False )

jobReport.setJobStatus( 'Matched', 'Job Received by Agent' )
result = self.__setupProxy( ownerDN, jobGroup )
Expand Down

0 comments on commit c11bff0

Please sign in to comment.