@@ -511,7 +511,7 @@ bool FAILOVER_HANDLER::failover_to_reader(const char*& new_error_code, const cha
511
511
if (result->connected ) {
512
512
current_host = result->new_host ;
513
513
connection_handler->update_connection (result->new_connection , current_host->get_host ());
514
- new_error_code = " 08S02" ;
514
+ new_error_code = " 08S02" ; // Failover succeeded error code.
515
515
error_msg = " The active SQL connection has changed." ;
516
516
MYLOG_DBC_TRACE (dbc,
517
517
" [FAILOVER_HANDLER] The active SQL connection has changed "
@@ -520,7 +520,7 @@ bool FAILOVER_HANDLER::failover_to_reader(const char*& new_error_code, const cha
520
520
return true ;
521
521
} else {
522
522
MYLOG_DBC_TRACE (dbc, " [FAILOVER_HANDLER] Unable to establish SQL connection to reader node." );
523
- new_error_code = " 08S01" ;
523
+ new_error_code = " 08S01" ; // Failover failed error code.
524
524
error_msg = " The active SQL connection was lost." ;
525
525
return false ;
526
526
}
@@ -549,7 +549,7 @@ bool FAILOVER_HANDLER::failover_to_writer(const char*& new_error_code, const cha
549
549
const auto filtered_topology = this ->topology_service ->get_filtered_topology (new_topology);
550
550
const auto allowed_hosts = filtered_topology->get_instances ();
551
551
if (std::find (allowed_hosts.begin (), allowed_hosts.end (), new_host) == allowed_hosts.end ()) {
552
- new_error_code = " 08S01" ;
552
+ new_error_code = " 08S01" ; // Failover failed error code.
553
553
error_msg = " The active SQL connection was lost." ;
554
554
MYLOG_DBC_TRACE (
555
555
dbc,
@@ -562,7 +562,7 @@ bool FAILOVER_HANDLER::failover_to_writer(const char*& new_error_code, const cha
562
562
563
563
connection_handler->update_connection (result->new_connection , new_host->get_host ());
564
564
565
- new_error_code = " 08S02" ;
565
+ new_error_code = " 08S02" ; // Failover succeeded error code.
566
566
error_msg = " The active SQL connection has changed." ;
567
567
MYLOG_DBC_TRACE (
568
568
dbc,
0 commit comments