1
0
mirror of https://github.com/librenms/librenms-agent.git synced 2024-05-09 09:54:52 +00:00

Fix MySQL Host Logic

This commit is contained in:
Daniel Preussker
2015-08-18 15:08:50 +00:00
parent 69551b05e2
commit 63d31665ce

View File

@ -268,8 +268,7 @@ function ss_get_mysql_stats( $options ) {
$heartbeat = isset($options['heartbeat']) ? $options['heartbeat'] : $heartbeat;
# If there is a port, or if it's a non-standard port, we add ":$port" to the
# hostname.
$host_str = $host
. $port != 3306 ? ":$port" : '';
$host_str = $host.($port != 3306 ? ":$port" : '');
debug(array('connecting to', $host_str, $user, $pass));
if (!extension_loaded('mysql') ) {
debug("The MySQL extension is not loaded");