You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to have the status of the "slave_io_running, beyond having 2 values for "slave_sql_running"?
I obtained it changing the "slave_stopped" variable to report it, but I don't think it's the right way of doing it.
Is it possible to have the status of the "slave_io_running, beyond having 2 values for "slave_sql_running"?
I obtained it changing the "slave_stopped" variable to report it, but I don't think it's the right way of doing it.
Now I have:
$status{'slave_running'} = ($newrow{'slave_sql_running'} eq 'Yes') ? 1 : 0;
$status{'slave_stopped'} = ($newrow{'slave_io_running'} eq 'Yes') ? 0 : 1;
The text was updated successfully, but these errors were encountered: