mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
influx-db, commas should be periods (#4222)
Noticed this while looking at psr-2 changes
This commit is contained in:
committed by
Neil Lathwood
parent
15b0cd68ea
commit
e2a043125b
@ -82,7 +82,7 @@ function influx_update($device,$measurement,$tags=array(),$fields) {
|
||||
try {
|
||||
$result = $influxdb->writePoints($points);
|
||||
} catch (Exception $e) {
|
||||
d_echo("Caught exception: ", $e->getMessage(), "\n");
|
||||
d_echo("Caught exception: " . $e->getMessage() . PHP_EOL);
|
||||
d_echo($e->getTrace());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user