Changeset 579
- Timestamp:
- 03/22/08 14:49:21 (10 months ago)
- Files:
-
- ChangeLog (modified) (1 diff)
- buildbot/slave/commands.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ChangeLog
r578 r579 1 1 2008-03-22 Brian Warner <warner@lothar.com> 2 3 * buildbot/slave/commands.py (ShellCommand): record more 4 information in the 'header' section: how much we write into stdin, 5 do we close stdin, are we using a PTY. There are lingering 6 problems with PTYs and with closing stdin (see #198 and #158). 7 This doesn't fix those problems, but it should provide more 8 information to developers. 2 9 3 10 * buildbot/status/client.py: hush pyflakes, log.msg vs log buildbot/slave/commands.py
r565 r579 377 377 log.msg(" environment: %s" % (self.environ,)) 378 378 self.sendStatus({'header': msg}) 379 380 if self.initialStdin: 381 msg = " writing %d bytes to stdin" % len(self.initialStdin) 382 log.msg(" " + msg) 383 self.sendStatus({'header': msg+"\n"}) 384 385 if self.keepStdinOpen: 386 msg = " leaving stdin open" 387 else: 388 msg = " closing stdin" 389 log.msg(" " + msg) 390 self.sendStatus({'header': msg+"\n"}) 391 392 msg = " using PTY: %s" % bool(self.usePTY) 393 log.msg(" " + msg) 394 self.sendStatus({'header': msg+"\n"}) 379 395 380 396 # this will be buffered until connectionMade is called
![[Buildbot Logo]](/trac/chrome/site/header-text-transparent.png)