aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rinda
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rinda')
-rw-r--r--lib/rinda/tuplespace.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rinda/tuplespace.rb b/lib/rinda/tuplespace.rb
index 4bd4a42af5..e538f6b137 100644
--- a/lib/rinda/tuplespace.rb
+++ b/lib/rinda/tuplespace.rb
@@ -259,7 +259,7 @@ module Rinda
notify_event('take', entry.value)
return entry.value
end
- return nil if template.expired?
+ raise RequestExpiredError if template.expired?
begin
@take_waiter.push(template)
@@ -287,7 +287,7 @@ module Rinda
synchronize do
entry = @bag.find(template)
return entry.value if entry
- return nil if template.expired?
+ raise RequestExpiredError if template.expired?
begin
@read_waiter.push(template)