weel 1.99.115 → 1.99.116
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/weel.rb +4 -3
- data/weel.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4179daff04f9e6d8e955eeec5538cd100673aeb2941c8445a88639d321f828b2
|
4
|
+
data.tar.gz: 5fe7cde1bf8ab2bed9e6a0a6a71e9ee19910a118e9ea00bbd99efcd88ffcf40f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95bda8281dd834bc7d2f1dcb63b135f162b4ddf45847c22de8835d091fc2d920ec7a6104849be59447b379d22bbd71e230610cbe22f751cc6a50a0ebb7d5008e
|
7
|
+
data.tar.gz: 9b06b7677afe6f1449c6fd8dfcd64de06607d36d659e80c9c8a016652a0cfac66533ee760245fa39e1b2726b50a83e000483fb9ed846a19744f758a2f225c4d1
|
data/lib/weel.rb
CHANGED
@@ -525,7 +525,7 @@ class WEEL
|
|
525
525
|
unless self.__weel_state == :stopping || self.__weel_state == :finishing || self.__weel_state == :stopped
|
526
526
|
# first set all to no_longer_neccessary
|
527
527
|
Thread.current[:branches].each do |thread|
|
528
|
-
if thread.alive?
|
528
|
+
if thread.alive? && thread[:branch_wait_count_cancel_active] == false
|
529
529
|
thread[:nolongernecessary] = true
|
530
530
|
__weel_recursive_continue(thread)
|
531
531
|
end
|
@@ -971,6 +971,7 @@ class WEEL
|
|
971
971
|
wp.detail = :unmark
|
972
972
|
end
|
973
973
|
rescue Signal::NoLongerNecessary
|
974
|
+
connectionwrapper.inform_activity_done
|
974
975
|
@__weel_positions.delete wp
|
975
976
|
Thread.current[:branch_position] = nil
|
976
977
|
wp.passthrough = nil
|
@@ -991,13 +992,13 @@ class WEEL
|
|
991
992
|
if Thread.current[:branch_parent]
|
992
993
|
Thread.current[:branch_parent][:mutex].synchronize do
|
993
994
|
if Thread.current[:branch_parent][:branch_wait_count_cancel_condition] == :first
|
994
|
-
if !Thread.current[:branch_wait_count_cancel_active]
|
995
|
+
if !Thread.current[:branch_wait_count_cancel_active] && Thread.current[:branch_parent][:branch_wait_count_cancel] < Thread.current[:branch_parent][:branch_wait_count]
|
995
996
|
Thread.current[:branch_wait_count_cancel_active] = true
|
996
997
|
Thread.current[:branch_parent][:branch_wait_count_cancel] += 1
|
997
998
|
end
|
998
999
|
if Thread.current[:branch_parent][:branch_wait_count_cancel] == Thread.current[:branch_parent][:branch_wait_count] && self.__weel_state != :stopping && self.__weel_state != :finishing
|
999
1000
|
Thread.current[:branch_parent][:branches].each do |thread|
|
1000
|
-
if thread.alive? && thread
|
1001
|
+
if thread.alive? && thread[:branch_wait_count_cancel_active] == false
|
1001
1002
|
thread[:nolongernecessary] = true
|
1002
1003
|
__weel_recursive_continue(thread)
|
1003
1004
|
end
|
data/weel.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: weel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.99.
|
4
|
+
version: 1.99.116
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juergen eTM Mangler
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-06-
|
12
|
+
date: 2024-06-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: test-unit
|