We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c2d325 commit 33ad9cbCopy full SHA for 33ad9cb
sources/net.sf.j2s.ajax/ajaxpipe/net/sf/j2s/ajax/CompoundPipeRunnable.java
@@ -83,7 +83,7 @@ public boolean isPipeLive() {
83
if (pipeAlive && status < 3) { // connected
84
return true; // still in starting status
85
}
86
- if (status == 3 && System.currentTimeMillis() - lastSetup < 30000) {
+ if (status == 3 && System.currentTimeMillis() - lastSetup <= 3 * SimplePipeRequest.pipeLiveNotifyInterval) {
87
return true;
88
89
if (super.isPipeLive()) {
0 commit comments