python / python/cpython

SysLogHandler closes tcp session after first message (also noted in #66006)

未关闭
#95,891 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

stdlib type-bug
主要语言
Python
星标
77.2k
派生
36k
PR 合并指标
PR 指标待抓取

描述

Bug report

Python 3.10.5
While running FastAPI (Uvicorn) and the SysLogHandler. The Socket if using a TCP stream is being closed after the first message, causing all additional messages to fail stating OSError10083. In looking through the SysLogHandler code I was able to add a try/except that solved the issue by opening a new socket if the current is found to be closed.

Lines 990/991:

else:
    self.socket.sendall(msg)

I changed to:

else:
    try:
        self.socket.sendall(msg)
    except OSError:
        with socket.create_connection(self.address) as s:
            s.sendall(msg)

Your environment

Python 3.10

  • CPython versions tested on: 3.10
  • Operating system and architecture: Windows 10

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

调研方向

从 SysLogHandler 约第 990-991 行附近的 TCP 发送分支开始,使用 FastAPI 和 Uvicorn 在 Windows 10 上通过 Python 3.10 重现该故障。验证 TCP socket 关闭后发送多条消息不会失败;如果仓库中有相关的测试位置,则为重新连接行为添加或更新覆盖率。

由索引模型根据 Issue 内容生成。

评估

技术栈
python
领域
networking, observability-sre
Issue 类型
缺陷
难度
3/5
预计耗时
1-2 天
活跃度
停滞
描述清晰度
基本清楚
新手友好度
45/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。