Fabric.api.run 将 stderr 转换为 SSH 的 stdout

发布于 2024-10-23 22:53:55 字数 188 浏览 1 评论 0原文

我使用fabric在服务上运行编译,服务器是Linux,客户端是Windows,通道是SSH。

  1. 在服务器上,“scons”将编译错误打印到 stderr。没关系。
  2. 但是从客户端执行的fabric.api.run('scons')会将编译错误打印到STDOUT。这不好,因此我的 IDE 无法检测到它们。

I run compilation on serve using fabric, server is Linux and client is Windows, channel is SSH.

  1. On server 'scons' prints compilation errors to stderr. It is okay.
  2. But fabric.api.run('scons') executed from client prints compilation errors to STDOUT. It is not good and because of this my IDE fails to detect them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝海 2024-10-30 22:53:55

默认情况下,fabric.api.run 将 stdout 和 stderr 组合到同一个流。正如@miku所说,在fabric 1.0中,您可以禁用此行为设置combine_stderr=False。或者,只需将 stderr 重定向到 /dev/null

run('scons 2>/dev/null')

By default, fabric.api.run combines stdout and stderr to the same stream. As @miku said, in fabric 1.0 you can disable this behavior setting combine_stderr=False. Alternatively, just redirect stderr to /dev/null

run('scons 2>/dev/null')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文