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
We should be consistent across the repo about the default value of on_demand_feature_views. We also need to make our conditional statement more resilient as on_demand_feature_views is sometimes None and sometimes []
Current Behavior
The problem is that we often check if on_demand_feature_views is None but we sometimes set it's default value to an empty list
This has a huge impact as the RetrievalJob.to_arrow() method will use self._to_arrow_internal() or self._to_df_internal() depending on the on_demand_feature_views.
It makes it complicated to debug part of the codebase.
Expected Behavior
We should be consistent across the repo about the default value of
on_demand_feature_views
. We also need to make our conditional statement more resilient ason_demand_feature_views
is sometimesNone
and sometimes[]
Current Behavior
The problem is that we often check if
on_demand_feature_views
is None but we sometimes set it's default value to an empty listThis has a huge impact as the
RetrievalJob.to_arrow()
method will useself._to_arrow_internal()
orself._to_df_internal()
depending on the on_demand_feature_views.It makes it complicated to debug part of the codebase.
Steps to reproduce
Specifications
Possible Solution
Make the conditional statements more resilient
instead of
The text was updated successfully, but these errors were encountered: