Skip to content

Commit

Permalink
Add note about pyasn1-0.1.1 bug
Browse files Browse the repository at this point in the history
This was brought up on the mailing list on November 22 by Maarten
Verwijs.
  • Loading branch information
djmitche committed Nov 25, 2011
1 parent d0d2c3d commit 69eb168
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions master/docs/tutorial/tour.rst
Expand Up @@ -263,12 +263,23 @@ Insert the following to enable debugging mode with manhole::
####### DEBUGGING
from buildbot import manhole
c['manhole'] = manhole.PasswordManhole("tcp:1234:interface=127.0.0.1","admin","passwd")
Now you can ssh into the master and get an interactive python shell::

After restarting the master, you can ssh into the master and get an interactive python shell::

ssh -p1234 admin@127.0.0.1
# enter passwd at prompt

.. note::
The pyasn1-0.1.1 release has a bug which results in an exception similar to
this on startup::

exceptions.TypeError: argument 2 must be long, not int

If you see this, the temporary solution is to install the previous version
of pyasn1::

pip instasll pyasn1-0.0.13b

If you wanted to check which slaves are connected and what builders those slaves are assigned to you could do::

>>> master.botmaster.slaves
Expand Down

0 comments on commit 69eb168

Please sign in to comment.