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
Recently, we changed the implementation of loadStorage to validate the data that's being loaded. To work around the (prevalent) issue of existing bad data, we patched out loadStorage in many tests to bypass that validation, with the intent to come back and fix the data in places where it needed to be fixed.
testing/influxql/cumulative_sum, for instance, needs to be fixed, because the test data is used by influx itself.
The text was updated successfully, but these errors were encountered:
Yeah, that’s the exact issue. Looking at the tests themselves, we can’t be overriding loadStorage for those tests because those tests need to set their own implementation.
Recently, we changed the implementation of
loadStorage
to validate the data that's being loaded. To work around the (prevalent) issue of existing bad data, we patched outloadStorage
in many tests to bypass that validation, with the intent to come back and fix the data in places where it needed to be fixed.testing/influxql/cumulative_sum
, for instance, needs to be fixed, because the test data is used by influx itself.The text was updated successfully, but these errors were encountered: