We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 163d34f commit 9a0398eCopy full SHA for 9a0398e
sdk/python/feast/infra/offline_stores/bigquery.py
@@ -114,7 +114,7 @@ class BigQueryOfflineStoreConfig(FeastConfigBaseModel):
114
115
@field_validator("billing_project_id")
116
def project_id_exists(cls, v, values, **kwargs):
117
- if v and not values["project_id"]:
+ if v and not values.data["project_id"]:
118
raise ValueError(
119
"please specify project_id if billing_project_id is specified"
120
)
0 commit comments