IP SLA SQL Error

Hello,
I am using LibreNMS to gather IP SLA data from a Cisco Switch. I have configured the SLA inside LibreNMS and I can see the graphs and they are being populated correclty.

The problem is that when I update or remove something from this switch that change is not reflected on Libre Web GUI.
I ran the “./discovery.php -h all -d -m cisco-sla” and got the following output:

https://pastebin.com/cKQ3CSan

Can you help me in troubleshooting these errors please?
If you need anymore info just ask!
Thanks

Edit: Added pastebin instead of text.

Hi,

Have you this problem resolved ? I still facing the same SQL error during discovery of cisco-sla.

I can get resolved with following change in cisco-sla.inc.php (line 80)

Original line of code:
dbUpdate($data, ‘slas’, ’sla_id = :sla_id’, array(‘sla_id’ => $sla_id));

Change to:
dbUpdate($data, ‘slas’, ’sla_id = ?’, array($sla_id));