Skip to content

Commit

Permalink
Fixed Ref.join() to actually work
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Allik committed Aug 27, 2013
1 parent 0799c62 commit 63f9a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spinoff/actor/ref.py
Expand Up @@ -183,7 +183,7 @@ def join(self):
from spinoff.actor.misc import Future
future = Future()
self << ('_watched', future)
return future
return future.get()

def __eq__(self, other):
"""Returns `True` if the `other` `Ref` points to the same actor.
Expand Down

0 comments on commit 63f9a3d

Please sign in to comment.