Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into add_project_object
  • Loading branch information
EXPEbdodla authored Sep 5, 2024
commit ffd5d5577cb50809e34bc3a3eb4af8d90c3dea41
4 changes: 2 additions & 2 deletions sdk/python/feast/repo_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,13 +353,13 @@ def _validate_auth_config(cls, values: Any) -> Any:
elif values["auth"]["type"] not in ALLOWED_AUTH_TYPES:
raise ValueError(
f'auth configuration has invalid authentication type={values["auth"]["type"]}. Possible '
f"values={allowed_auth_types}"
f'values={ALLOWED_AUTH_TYPES}'
)
elif isinstance(values["auth"], AuthConfig):
if values["auth"].type not in ALLOWED_AUTH_TYPES:
raise ValueError(
f'auth configuration has invalid authentication type={values["auth"].type}. Possible '
f"values={allowed_auth_types}"
f'values={ALLOWED_AUTH_TYPES}'
)
return values

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.