Skip to content

Commit

Permalink
Merge branch 'release/0.12.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Feb 25, 2014
2 parents 49d611a + b14b5f4 commit 4941b2f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gridmap/conf.py
Expand Up @@ -53,7 +53,7 @@
running.
(Default: 1.0)
:var MAX_IDLE_HEARTBEATS: Number of heartbeats we can receive where the process
has >= IDLE_THRESHOLD CPU utilization and is sleeping
has <= IDLE_THRESHOLD CPU utilization and is sleeping
before we consider the process dead. (Default: 3)
:var NUM_RESUBMITS: How many times can a particular job can die, before we give
up. (Default: 3)
Expand Down
2 changes: 1 addition & 1 deletion gridmap/job.py
Expand Up @@ -789,7 +789,7 @@ def process_jobs(jobs, temp_dir='/scratch/', white_list=None, quiet=True,
if (not local and not DRMAA_PRESENT):
logger = logging.getLogger(__name__)
logger.warning('Could not import drmaa. Processing jobs locally.')
local = False
local = True

if not local:
# initialize monitor to get port number
Expand Down
2 changes: 1 addition & 1 deletion gridmap/version.py
Expand Up @@ -28,5 +28,5 @@
:organization: ETS
'''

__version__ = '0.12.2'
__version__ = '0.12.3'
VERSION = tuple(int(x) for x in __version__.split('.'))
5 changes: 2 additions & 3 deletions gridmap/web.py
Expand Up @@ -80,9 +80,8 @@ def list_jobs(self, address):
'''

for job in jobs:
out_html += ("<tr><td><a href='/view_job?address={}" +
"&job_id={}'>{}</td>").format(address, job.jobid,
job.jobid)
out_html += ("<tr><td><a href='/view_job?address={0}" +
"&job_id={1}'>{1}</td>").format(address, job.id)
out_html += "<td>{}</td>".format(job.ret is not None)
out_html += "<td>{}</td>".format(job.cause_of_death)
out_html += "</tr>"
Expand Down

0 comments on commit 4941b2f

Please sign in to comment.