Fabric.api.run 将 stderr 转换为 SSH 的 stdout
我使用fabric在服务上运行编译,服务器是Linux,客户端是Windows,通道是SSH。
- 在服务器上,“scons”将编译错误打印到 stderr。没关系。
- 但是从客户端执行的fabric.api.run('scons')会将编译错误打印到STDOUT。这不好,因此我的 IDE 无法检测到它们。
I run compilation on serve using fabric, server is Linux and client is Windows, channel is SSH.
- On server 'scons' prints compilation errors to stderr. It is okay.
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
combine_stderr=False
(至少在1.0中)。另请参阅:
You could use
combine_stderr=False
(at least in 1.0).See also:
默认情况下,fabric.api.run 将 stdout 和 stderr 组合到同一个流。正如@miku所说,在fabric 1.0中,您可以禁用此行为设置
combine_stderr=False
。或者,只需将 stderr 重定向到 /dev/nullBy default,
fabric.api.run
combines stdout and stderr to the same stream. As @miku said, in fabric 1.0 you can disable this behavior settingcombine_stderr=False
. Alternatively, just redirect stderr to /dev/null