Skip to content

Commit 9184e6c

Browse files
author
zhourenjian
committed
Fixed a bug in weaving pipes one after another immediately
1 parent ecee1c3 commit 9184e6c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

sources/net.sf.j2s.ajax/ajaxpipe/net/sf/j2s/ajax/CompoundPipeRequest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ public static void weave(String id, CompoundPipeSession p) {
1818
if (!pipe.weave(p) && p.isPipeLive()) { // already woven!
1919
return;
2020
}
21+
if (pipe.pipeKey == null) {
22+
return;
23+
}
2124
p.pipeKey = pipe.pipeKey;
2225
SimpleRPCRequest.request(p);
2326
if (pipe.status < 2) {

0 commit comments

Comments
 (0)