We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 698b04d commit a7b76d4Copy full SHA for a7b76d4
eval_protocol/utils/logs_server.py
@@ -93,7 +93,11 @@ def disconnect(self, websocket: WebSocket):
93
94
def broadcast_file_update(self, update_type: str, file_path: str):
95
"""Broadcast file update to all connected clients."""
96
- if not file_path.startswith(default_logger.datasets_dir):
+ if not file_path.startswith(default_logger.datasets_dir) and not file_path.endswith(".jsonl"):
97
+ """
98
+ .lock files are often created and deleted by the singleton lock
99
+ mechanism so we only broadcast .jsonl files
100
101
return
102
logger.info(f"Broadcasting file update: {update_type} {file_path}")
103
0 commit comments