File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
compute_engines/snowflake Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ class SnowflakeComputeEngineConfig(FeastConfigBaseModel):
87
87
88
88
schema_ : Optional [str ] = Field ("PUBLIC" , alias = "schema" )
89
89
""" Snowflake schema name """
90
- model_config = ConfigDict (populate_by_name = True )
90
+ model_config = ConfigDict (populate_by_name = True , extra = "allow" )
91
91
92
92
93
93
class SnowflakeComputeEngine (ComputeEngine ):
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ class SnowflakeOfflineStoreConfig(FeastConfigBaseModel):
133
133
134
134
max_file_size : Optional [int ] = None
135
135
""" Upper size limit (in bytes) of each file that is offloaded. Default: 16777216"""
136
- model_config = ConfigDict (populate_by_name = True )
136
+ model_config = ConfigDict (populate_by_name = True , extra = "allow" )
137
137
138
138
139
139
class SnowflakeOfflineStore (OfflineStore ):
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class SnowflakeOnlineStoreConfig(FeastConfigBaseModel):
67
67
68
68
schema_ : Optional [str ] = Field ("PUBLIC" , alias = "schema" )
69
69
""" Snowflake schema name """
70
- model_config = ConfigDict (populate_by_name = True )
70
+ model_config = ConfigDict (populate_by_name = True , extra = "allow" )
71
71
72
72
73
73
class SnowflakeOnlineStore (OnlineStore ):
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ class SnowflakeRegistryConfig(RegistryConfig):
117
117
118
118
schema_ : Optional [str ] = Field ("PUBLIC" , alias = "schema" )
119
119
""" Snowflake schema name """
120
- model_config = ConfigDict (populate_by_name = True )
120
+ model_config = ConfigDict (populate_by_name = True , extra = "allow" )
121
121
122
122
123
123
class SnowflakeRegistry (BaseRegistry ):
You can’t perform that action at this time.
0 commit comments