You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason, writing to influx by passing a variable as param to addField causes "Bad Request 400" error. I already attempted to use std::move the variables into the param but nothing seems to work apart from directly placing the values.
EDIT: Finally solved it. After some digging realized how the Point::FieldValue variant does not take uint32_t as a type. A simple cast to unsigned int fixed it. Thanks!
The text was updated successfully, but these errors were encountered:
For some reason, writing to influx by passing a variable as param to addField causes "Bad Request 400" error. I already attempted to use std::move the variables into the param but nothing seems to work apart from directly placing the values.
EDIT: Finally solved it. After some digging realized how the Point::FieldValue variant does not take uint32_t as a type. A simple cast to unsigned int fixed it. Thanks!
The text was updated successfully, but these errors were encountered: