We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cca7443 + 18c1054 commit f92d3f3Copy full SHA for f92d3f3
src/teuthology_api/config.py
@@ -7,7 +7,9 @@ class APISettings(BaseSettings):
7
Class for API settings.
8
"""
9
10
- model_config = SettingsConfigDict(env_file=".env", env_file_encoding="utf-8")
+ model_config = SettingsConfigDict(
11
+ env_file=".env", env_file_encoding="utf-8", extra="ignore"
12
+ )
13
# TODO: team names need to be changed below when created
14
admin_team: str = "ceph" # ceph's github team with *sudo* access to sepia
15
teuth_team: str = "teuth" # ceph's github team with access to sepia
0 commit comments