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
The problem here is that _type_no_value assumes the default type for that timeseries, but when using custom read functions, these filler values don't necessarily match the type that the user-provided functions are assuming.
This would also clear up issues with custom read functions, such as in this case where interval is necessary in the return data, but not strictly necessary to satisfy the goals of the library.
The text was updated successfully, but these errors were encountered:
There's a disconnect in how missed intervals are handled in the reading functions. For example,
MongoBackend._series
does this:The problem here is that
_type_no_value
assumes the default type for that timeseries, but when using custom read functions, these filler values don't necessarily match the type that the user-provided functions are assuming.This would also clear up issues with custom read functions, such as in this case where
interval
is necessary in the return data, but not strictly necessary to satisfy the goals of the library.The text was updated successfully, but these errors were encountered: