Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Browse files

Fixing repeated timeout wrap bug in python_app code (#1534)

Fixes #1533
  • Loading branch information
yadudoc authored and benclifford committed Jan 13, 2020
1 parent a5b25f9 commit 7213cdee66101890bf5466d253ba141e2f5e2bbf
Showing with 5 additions and 2 deletions.
  1. +5 −2 parsl/app/python.py
@@ -63,8 +63,11 @@ def __call__(self, *args, **kwargs):

walltime = self.kwargs.get('walltime')
if walltime is not None:
self.func = timeout(self.func, walltime)
app_fut = dfk.submit(self.func, *args,
func = timeout(self.func, walltime)
else:
func = self.func

app_fut = dfk.submit(func, *args,
executors=self.executors,
fn_hash=self.func_hash,
cache=self.cache,

0 comments on commit 7213cde

Please sign in to comment.
You can’t perform that action at this time.