sensu-em 2.5.1 → 2.5.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6129dbabcaa4905269f9d8c4ee9b366c7b3a085b
|
4
|
+
data.tar.gz: d797eda792230d6aa56a5613e9acc65a240e5dfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aff44c9cd709a8bfa838441eb79c66fb4583cfbebb6db9b60c9a4451537e228c208f1700f630ebbc35bfbc2e34362697647f44c35ae574c21359d6d13b832b24
|
7
|
+
data.tar.gz: 005c6e3f834ee7b6f550778a7190b3b85f150505abe929f3d903278e6058ab9af9c10f2a95a99f64065eba5ca2166d8e0cfa29672d99f57318404c38dc88f8f8
|
data/eventmachine.gemspec
CHANGED
@@ -128,9 +128,11 @@ public class EmReactor {
|
|
128
128
|
callback.trigger(b, EventCode.EM_CONNECTION_UNBOUND, null, (long) 0);
|
129
129
|
ec.close();
|
130
130
|
|
131
|
-
|
132
|
-
|
133
|
-
|
131
|
+
if (!(ec instanceof EventableDatagramChannel)) {
|
132
|
+
EventableSocketChannel sc = (EventableSocketChannel) ec;
|
133
|
+
if (sc != null && sc.isAttached())
|
134
|
+
DetachedConnections.add (sc);
|
135
|
+
}
|
134
136
|
}
|
135
137
|
}
|
136
138
|
UnboundConnections.clear();
|
@@ -74,7 +74,15 @@ public class EventableDatagramChannel extends EventableChannel<DatagramPacket> {
|
|
74
74
|
}
|
75
75
|
|
76
76
|
public boolean scheduleClose (boolean afterWriting) {
|
77
|
-
|
77
|
+
if (!afterWriting)
|
78
|
+
outboundQ.clear();
|
79
|
+
|
80
|
+
if (outboundQ.isEmpty())
|
81
|
+
return true;
|
82
|
+
else {
|
83
|
+
bCloseScheduled = true;
|
84
|
+
return false;
|
85
|
+
}
|
78
86
|
}
|
79
87
|
|
80
88
|
public void startTls() {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sensu-em
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Francis Cianfrocca
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-06-
|
12
|
+
date: 2015-06-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: test-unit
|