diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-03-14 08:07:54 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-03-14 08:10:19 -0700 |
commit | c3bc541a69d5b8469771dbde9172cad0a9d0d1ae (patch) | |
tree | 82613eaeef90cab7c534a7f0cdf63ee10445aec1 /test/service.py | |
parent | 0330036bef996815c5ef384ab6803697816e4189 (diff) | |
download | kafka-python-c3bc541a69d5b8469771dbde9172cad0a9d0d1ae.tar.gz |
More fixture logging improvements
- Add test logging NullHandler
- Remove default logging level filtering in testutil
- Log render_template info
- More fixture logging cleanups
- wait_for() should not handle child shutdown
Diffstat (limited to 'test/service.py')
-rw-r--r-- | test/service.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/service.py b/test/service.py index 0e47835..55cc739 100644 --- a/test/service.py +++ b/test/service.py @@ -99,10 +99,6 @@ class SpawnedService(threading.Thread): while True: elapsed = time.time() - start if elapsed >= timeout: - try: - self.child.kill() - except: - log.exception("Received exception when killing child process") log.error("Waiting for %r timed out after %d seconds", pattern, timeout) return False |