File tree 1 file changed +2
-5
lines changed
src/main/java/net/spy/memcached
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 45
45
import java .util .Set ;
46
46
import java .util .SortedMap ;
47
47
import java .util .TreeMap ;
48
- import java .util .concurrent .ConcurrentHashMap ;
49
48
import java .util .concurrent .ConcurrentLinkedQueue ;
50
49
import java .util .concurrent .CountDownLatch ;
51
50
import java .util .concurrent .TimeUnit ;
52
-
53
51
import net .spy .memcached .compat .SpyThread ;
54
52
import net .spy .memcached .compat .log .LoggerFactory ;
55
53
import net .spy .memcached .internal .OperationFuture ;
62
60
import net .spy .memcached .ops .OperationStatus ;
63
61
import net .spy .memcached .ops .TapOperation ;
64
62
import net .spy .memcached .ops .VBucketAware ;
65
- import net .spy .memcached .ops .VersionOperation ;
66
63
import net .spy .memcached .protocol .binary .BinaryOperationFactory ;
67
64
import net .spy .memcached .protocol .binary .TapAckOperationImpl ;
68
65
import net .spy .memcached .util .StringUtils ;
@@ -421,8 +418,8 @@ public void complete() {
421
418
}
422
419
}
423
420
424
- if (!done || testOp .isCancelled () || testOp .hasErrored () ||
425
- testOp .isTimedOut ()) {
421
+ if (!done || testOp .isCancelled () || testOp .hasErrored ()
422
+ || testOp .isTimedOut ()) {
426
423
throw new ConnectException ("Could not send noop upon connect! "
427
424
+ "This may indicate a running, but not responding memcached "
428
425
+ "instance." );
You can’t perform that action at this time.
0 commit comments