weel 1.99.11 → 1.99.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/weel.rb +1 -1
- data/weel.gemspec +1 -1
- metadata +1 -1
data/lib/weel.rb
CHANGED
|
@@ -629,7 +629,7 @@ class WEEL
|
|
|
629
629
|
waitingresult = nil
|
|
630
630
|
waitingresult = Thread.current[:continue].wait unless Thread.current[:nolongernecessary] || self.__weel_state == :stopping || self.__weel_state == :stopped
|
|
631
631
|
raise waitingresult if !waitingresult.nil? && waitingresult.is_a?(Signal::Again)
|
|
632
|
-
raise waitingresult[1] if !waitingresult.nil? && waitingresult.is_a?(Array) && waitingresult.length == 2 && waitingresult[0]
|
|
632
|
+
raise waitingresult[1] if !waitingresult.nil? && waitingresult.is_a?(Array) && waitingresult.length == 2 && waitingresult[0] == WEEL::Signal::Error
|
|
633
633
|
|
|
634
634
|
if Thread.current[:nolongernecessary]
|
|
635
635
|
handlerwrapper.activity_no_longer_necessary
|
data/weel.gemspec
CHANGED