Skip to content

Commit

Permalink
fix for 3104
Browse files Browse the repository at this point in the history
  • Loading branch information
nupurkale78 committed Mar 5, 2024
1 parent e07747b commit 019f4a7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions parsl/dataflow/dflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1409,8 +1409,12 @@ class DataFlowKernelLoader:
def clear(cls) -> None:
"""Clear the active DataFlowKernel so that a new one can be loaded."""
cls._dfk = None
<<<<<<< HEAD
self.cleanup()

=======
self.cleanup()
>>>>>>> c4f3087c (fix for 3104)
@classmethod
@typeguard.typechecked
def load(cls, config: Optional[Config] = None) -> DataFlowKernel:
Expand Down Expand Up @@ -1448,4 +1452,8 @@ def dfk(cls) -> DataFlowKernel:
if cls._dfk is None:
raise NoDataFlowKernelError('Must first load config')
return cls._dfk
<<<<<<< HEAD
self.cleanup()
=======
self.cleanup()
>>>>>>> c4f3087c (fix for 3104)

0 comments on commit 019f4a7

Please sign in to comment.