We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 498e80e commit 0bc381aCopy full SHA for 0bc381a
backend/agent/interactem/agent/agent.py
@@ -255,7 +255,10 @@ async def _cleanup_containers(self):
255
self._suppress_monitor = False
256
257
async def run(self):
258
- logger.info(f"Starting agent with configuration: {cfg.model_dump()}")
+ # exclude extra operator envs to prevent leaks
259
+ logger.info(
260
+ f"Starting agent with configuration: {cfg.model_dump(exclude='OPERATOR_EXTRA_ENV')}"
261
+ )
262
create_process = not PODMAN_SERVICE_URI
263
await self._start_podman_service(create_process=create_process)
264
0 commit comments