bzr commit to bzr+ssh hangs on 'No handlers could be found for logger "bzr"'
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Bazaar |
Fix Released
|
High
|
Unassigned | ||
Launchpad itself |
Fix Released
|
High
|
Jonathan Lange |
Bug Description
Using bzr 0.91, and confirmed on 0.92.0.dev.0
---
Committing changes to launchpad:
[13:18:
Repository checkout (format: dirstate-tags)
Location:
repository checkout root: .
checkout of branch: bzr+ssh://<email address hidden>
shared repository: /Users/
Related branches:
push branch: bzr+ssh://<email address hidden>
---
[13:18:
No handlers could be found for logger "bzr"
Bazaar hangs indefinitely at this point.
Tried several times, using two different computers, both Mac OSX 10.4. Also tested using a different repository target and it worked fine. That one was an sftp server.
Finally got it to work by this modification (on 0.92.0.dev.0)
=== modified file 'bzrlib/
--- bzrlib/
+++ bzrlib/
@@ -357,9 +357,9 @@
result = self._recv_tuple()
if 'hpss' in debug.debug_flags:
if self._request_
- mutter(' result: %6.3fs %s',
- time.time() - self._request_
- repr(result)[1:-1])
+ #mutter(' result: %6.3fs %s',
+ # time.time() - self._request_
+ # repr(result)[1:-1])
else:
Changed in launchpad-bazaar: | |
status: | In Progress → Fix Committed |
Changed in launchpad-bazaar: | |
status: | Fix Committed → Fix Released |
Note, I cannot give you a bzr selftest, because it hangs during ssh tests if I try.