This is an automated email from the ASF dual-hosted git repository. hugh pushed a commit to branch remedy-reports-throwing-400s in repository https://gitbox.apache.org/repos/asf/superset.git
commit 9d4854e0aaddb56ff14c8e497f3cfa81ed2799e0 Author: Hugh A. Miles II <[email protected]> AuthorDate: Thu Apr 14 14:47:24 2022 -0400 Update schemas.py --- superset/charts/schemas.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/superset/charts/schemas.py b/superset/charts/schemas.py index 2a967eda27..24facf9ba6 100644 --- a/superset/charts/schemas.py +++ b/superset/charts/schemas.py @@ -844,7 +844,10 @@ class ChartDataFilterSchema(Schema): class ChartDataExtrasSchema(Schema): - + + # todo(hugh): remedy for data currently still being processed by reports + # need to write a proper migration to remove all time_range_endpoints + time_range_endpoints = fields.List(str, by_value=True)) relative_start = fields.String( description="Start time for relative time deltas. " 'Default: `config["DEFAULT_RELATIVE_START_TIME"]`',
