Skip to content

Commit 4941b2f

Browse files
committed
Merge branch 'release/0.12.3'
2 parents 49d611a + b14b5f4 commit 4941b2f

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

gridmap/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
running.
5454
(Default: 1.0)
5555
:var MAX_IDLE_HEARTBEATS: Number of heartbeats we can receive where the process
56-
has >= IDLE_THRESHOLD CPU utilization and is sleeping
56+
has <= IDLE_THRESHOLD CPU utilization and is sleeping
5757
before we consider the process dead. (Default: 3)
5858
:var NUM_RESUBMITS: How many times can a particular job can die, before we give
5959
up. (Default: 3)

gridmap/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def process_jobs(jobs, temp_dir='/scratch/', white_list=None, quiet=True,
789789
if (not local and not DRMAA_PRESENT):
790790
logger = logging.getLogger(__name__)
791791
logger.warning('Could not import drmaa. Processing jobs locally.')
792-
local = False
792+
local = True
793793

794794
if not local:
795795
# initialize monitor to get port number

gridmap/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
:organization: ETS
2929
'''
3030

31-
__version__ = '0.12.2'
31+
__version__ = '0.12.3'
3232
VERSION = tuple(int(x) for x in __version__.split('.'))

gridmap/web.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,8 @@ def list_jobs(self, address):
8080
'''
8181

8282
for job in jobs:
83-
out_html += ("<tr><td><a href='/view_job?address={}" +
84-
"&job_id={}'>{}</td>").format(address, job.jobid,
85-
job.jobid)
83+
out_html += ("<tr><td><a href='/view_job?address={0}" +
84+
"&job_id={1}'>{1}</td>").format(address, job.id)
8685
out_html += "<td>{}</td>".format(job.ret is not None)
8786
out_html += "<td>{}</td>".format(job.cause_of_death)
8887
out_html += "</tr>"

0 commit comments

Comments
 (0)