sni / lmd

Livestatus Multitool Daemon - Create livestatus federation from multiple sources
https://labs.consol.de/omd/packages/lmd/
GNU General Public License v3.0
42 stars 31 forks source link

Fix missing comments detection in delta update #97

Closed jacobbaungard closed 4 years ago

jacobbaungard commented 4 years ago

When fetching a list of IDs from the source, the IDs were incorrectly transformed (with sprintf), marking all comments as missing.

Further, this also caused all comments to be deleted, so we would essential do a full update every time instead of a delta update.

With this commit we convert to int64 and then use %d instead of %v when getting the ID string.