@@ -316,30 +316,31 @@ public function getSentinelConnection()
316
316
*/
317
317
public function updateSentinels ()
318
318
{
319
- SENTINEL_QUERY :
319
+ SENTINEL_QUERY : {
320
320
$ sentinel = $ this ->getSentinelConnection ();
321
321
322
- try {
323
- $ payload = $ sentinel ->executeCommand (
324
- RawCommand::create ('SENTINEL ' , 'sentinels ' , $ this ->service )
325
- );
326
-
327
- $ this ->sentinels = [];
328
- $ this ->sentinelIndex = 0 ;
329
- // NOTE: sentinel server does not return itself, so we add it back.
330
- $ this ->sentinels [] = $ sentinel ->getParameters ()->toArray ();
331
-
332
- foreach ($ payload as $ sentinel ) {
333
- $ this ->sentinels [] = [
334
- 'host ' => $ sentinel [3 ],
335
- 'port ' => $ sentinel [5 ],
336
- 'role ' => 'sentinel ' ,
337
- ];
338
- }
339
- } catch (ConnectionException $ exception ) {
340
- $ this ->sentinelConnection = null ;
322
+ try {
323
+ $ payload = $ sentinel ->executeCommand (
324
+ RawCommand::create ('SENTINEL ' , 'sentinels ' , $ this ->service )
325
+ );
326
+
327
+ $ this ->sentinels = [];
328
+ $ this ->sentinelIndex = 0 ;
329
+ // NOTE: sentinel server does not return itself, so we add it back.
330
+ $ this ->sentinels [] = $ sentinel ->getParameters ()->toArray ();
331
+
332
+ foreach ($ payload as $ sentinel ) {
333
+ $ this ->sentinels [] = [
334
+ 'host ' => $ sentinel [3 ],
335
+ 'port ' => $ sentinel [5 ],
336
+ 'role ' => 'sentinel ' ,
337
+ ];
338
+ }
339
+ } catch (ConnectionException $ exception ) {
340
+ $ this ->sentinelConnection = null ;
341
341
342
- goto SENTINEL_QUERY ;
342
+ goto SENTINEL_QUERY ;
343
+ }
343
344
}
344
345
}
345
346
@@ -457,18 +458,19 @@ public function getMaster()
457
458
$ this ->updateSentinels ();
458
459
}
459
460
460
- SENTINEL_QUERY :
461
+ SENTINEL_QUERY : {
461
462
$ sentinel = $ this ->getSentinelConnection ();
462
463
463
- try {
464
- $ masterParameters = $ this ->querySentinelForMaster ($ sentinel , $ this ->service );
465
- $ masterConnection = $ this ->connectionFactory ->create ($ masterParameters );
464
+ try {
465
+ $ masterParameters = $ this ->querySentinelForMaster ($ sentinel , $ this ->service );
466
+ $ masterConnection = $ this ->connectionFactory ->create ($ masterParameters );
466
467
467
- $ this ->add ($ masterConnection );
468
- } catch (ConnectionException $ exception ) {
469
- $ this ->sentinelConnection = null ;
468
+ $ this ->add ($ masterConnection );
469
+ } catch (ConnectionException $ exception ) {
470
+ $ this ->sentinelConnection = null ;
470
471
471
- goto SENTINEL_QUERY ;
472
+ goto SENTINEL_QUERY ;
473
+ }
472
474
}
473
475
474
476
return $ masterConnection ;
@@ -487,19 +489,20 @@ public function getSlaves()
487
489
$ this ->updateSentinels ();
488
490
}
489
491
490
- SENTINEL_QUERY :
492
+ SENTINEL_QUERY : {
491
493
$ sentinel = $ this ->getSentinelConnection ();
492
494
493
- try {
494
- $ slavesParameters = $ this ->querySentinelForSlaves ($ sentinel , $ this ->service );
495
+ try {
496
+ $ slavesParameters = $ this ->querySentinelForSlaves ($ sentinel , $ this ->service );
497
+
498
+ foreach ($ slavesParameters as $ slaveParameters ) {
499
+ $ this ->add ($ this ->connectionFactory ->create ($ slaveParameters ));
500
+ }
501
+ } catch (ConnectionException $ exception ) {
502
+ $ this ->sentinelConnection = null ;
495
503
496
- foreach ($ slavesParameters as $ slaveParameters ) {
497
- $ this ->add ($ this ->connectionFactory ->create ($ slaveParameters ));
504
+ goto SENTINEL_QUERY ;
498
505
}
499
- } catch (ConnectionException $ exception ) {
500
- $ this ->sentinelConnection = null ;
501
-
502
- goto SENTINEL_QUERY ;
503
506
}
504
507
505
508
return array_values ($ this ->slaves );
0 commit comments