durable_rules 0.34.25 → 0.34.26
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.
- checksums.yaml +4 -4
- data/src/rules/net.c +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 240fc57baccb92e497e5f220881e131f086c9f02
|
|
4
|
+
data.tar.gz: b08818faad5060a0aef4508ae1a84b4db646633c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cf652b12ccb66f545ead8ca3688b85079ff4bc34fbd7c6457fb70cbdfeef6c7576779948160ca716793ec0c0c26e67ed98a7c6a76936ffb785e789bf74f6364
|
|
7
|
+
data.tar.gz: bbe68fcdc572957b5f8bdd2623956f7f113bd0ac858504635fc24df6f797652f9d1fd220a04347c14c4221a42780a2e87b65d9585b6d124d47c0abeb90f94380
|
data/src/rules/net.c
CHANGED
|
@@ -1033,11 +1033,13 @@ static unsigned int loadPeekActionCommand(ruleset *tree, binding *rulesBinding)
|
|
|
1033
1033
|
" local packed_frames = {}\n"
|
|
1034
1034
|
" local unwrap = true\n"
|
|
1035
1035
|
" local count = 1\n"
|
|
1036
|
+
" local left = false\n"
|
|
1036
1037
|
" if raw_count ~= \"single\" then\n"
|
|
1037
1038
|
" count = tonumber(raw_count)\n"
|
|
1038
1039
|
" unwrap = false\n"
|
|
1039
1040
|
" end\n"
|
|
1040
1041
|
" if count == 0 then\n"
|
|
1042
|
+
" left = true\n"
|
|
1041
1043
|
" local packed_frame = redis.call(\"lpop\", rule_action_key)\n"
|
|
1042
1044
|
" while packed_frame ~= \"0\" do\n"
|
|
1043
1045
|
" local frame = review_frame(cmsgpack.unpack(packed_frame), rule_action_key, sid, max_score)\n"
|
|
@@ -1066,7 +1068,11 @@ static unsigned int loadPeekActionCommand(ruleset *tree, binding *rulesBinding)
|
|
|
1066
1068
|
" end\n"
|
|
1067
1069
|
" end\n"
|
|
1068
1070
|
" for i = #packed_frames, 1, -1 do\n"
|
|
1069
|
-
"
|
|
1071
|
+
" if left then\n"
|
|
1072
|
+
" redis.call(\"lpush\", rule_action_key, packed_frames[i])\n"
|
|
1073
|
+
" else\n"
|
|
1074
|
+
" redis.call(\"rpush\", rule_action_key, packed_frames[i])\n"
|
|
1075
|
+
" end\n"
|
|
1070
1076
|
" end\n"
|
|
1071
1077
|
" if #packed_frames == 0 then\n"
|
|
1072
1078
|
" return nil, nil\n"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: durable_rules
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.34.
|
|
4
|
+
version: 0.34.26
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jesus Ruiz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-04-
|
|
11
|
+
date: 2017-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|