Skip to content

Commit

Permalink
Merge pull request minaskar#24 from ewoudwempe/master
Browse files Browse the repository at this point in the history
Remove error suppression by ChainManager in case of pickling failure
  • Loading branch information
minaskar authored Dec 3, 2021
2 parents 673728a + 701a70f commit 76ae77d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions zeus/parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,6 @@ def __exit__(self, exc_type, exc_value, exc_traceback):
if self.pool is not None:
self.pool.close()

return True


@property
def get_rank(self):
Expand Down Expand Up @@ -363,4 +361,4 @@ def bcast(self, x, root):
x : Python object
The input object x in all ranks.
'''
return self.chains_comm.bcast(x, root=root)
return self.chains_comm.bcast(x, root=root)

0 comments on commit 76ae77d

Please sign in to comment.