w4 / serde_prometheus

:pager: serde-based serializer for prometheus' text-based exposition format
Other
4 stars 5 forks source link

Avoid using heapless entry API due to bug #6

Closed shaunbennett closed 1 year ago

shaunbennett commented 1 year ago

The heapless entry API currently has a bug where incorrect entries are returned when inserted. This works around that bug for now by avoiding using the entry API and instead just inserting normally where the bug isn't present.

See: https://github.com/japaric/heapless/issues/360