Skip to content

Commit e38e225

Browse files
authored
Merge pull request #547 from NERSC/dont-output-agent-cfg
don't output agent cfg extra operator envs
2 parents 498e80e + 9e652db commit e38e225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/agent/interactem/agent/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class Settings(BaseSettings):
4646
VECTOR_AGGREGATOR_ADDR: str | None = None
4747
LOG_DIR: Path = Path("~/.interactem/logs").expanduser().resolve()
4848
VECTOR_CONFIG_PATH: Path | None = None
49-
OPERATOR_EXTRA_ENV: dict[str, str] = Field(default_factory=dict)
49+
OPERATOR_EXTRA_ENV: dict[str, str] = Field(default_factory=dict, exclude=True)
5050

5151
@model_validator(mode="after")
5252
def ensure_operator_creds_file(self) -> "Settings":

0 commit comments

Comments
 (0)