@@ -1397,15 +1397,8 @@ public ConnectionSecureOrTune ConnectionStartOk(IDictionary<string, object> clie
1397
1397
{
1398
1398
ConnectionStartRpcContinuation k = new ConnectionStartRpcContinuation ( ) ;
1399
1399
Enqueue ( k ) ;
1400
- try
1401
- {
1402
- _Private_ConnectionStartOk ( clientProperties , mechanism ,
1400
+ _Private_ConnectionStartOk ( clientProperties , mechanism ,
1403
1401
response , locale ) ;
1404
- }
1405
- catch ( AlreadyClosedException )
1406
- {
1407
- // Ignored, see BasicGet
1408
- }
1409
1402
k . GetReply ( ) ;
1410
1403
return k . m_result ;
1411
1404
}
@@ -1427,14 +1420,7 @@ public ConnectionSecureOrTune ConnectionSecureOk(byte[] response)
1427
1420
{
1428
1421
ConnectionStartRpcContinuation k = new ConnectionStartRpcContinuation ( ) ;
1429
1422
Enqueue ( k ) ;
1430
- try
1431
- {
1432
- _Private_ConnectionSecureOk ( response ) ;
1433
- }
1434
- catch ( AlreadyClosedException )
1435
- {
1436
- // Ignored, see BasicGet
1437
- }
1423
+ _Private_ConnectionSecureOk ( response ) ;
1438
1424
k . GetReply ( ) ;
1439
1425
return k . m_result ;
1440
1426
}
@@ -1473,13 +1459,7 @@ public string ConnectionOpen(string virtualHost,
1473
1459
{
1474
1460
ConnectionOpenContinuation k = new ConnectionOpenContinuation ( ) ;
1475
1461
Enqueue ( k ) ;
1476
- try {
1477
- _Private_ConnectionOpen ( virtualHost , capabilities , insist ) ;
1478
- }
1479
- catch ( AlreadyClosedException )
1480
- {
1481
- // Ignored, see BasicGet
1482
- }
1462
+ _Private_ConnectionOpen ( virtualHost , capabilities , insist ) ;
1483
1463
k . GetReply ( ) ;
1484
1464
if ( k . m_redirect ) {
1485
1465
throw new RedirectException ( m_session . Connection . Protocol ,
0 commit comments