Error on first launch with Buildbot

I am following the docs trying to get Buildbot to work the first time and I keep getting the same error:

2017-08-04 13:58:45-0400 [-] while starting BuildMaster
    Traceback (most recent call last):
      File "/home/mike/tmp/bb-master/sandbox/lib/python2.7/site-packages/twisted/internet/defer.py", line 1442, in gotResult
        _inlineCallbacks(r, g, deferred)
      File "/home/mike/tmp/bb-master/sandbox/lib/python2.7/site-packages/twisted/internet/defer.py", line 1386, in _inlineCallbacks
        result = g.send(result)
      File "/home/mike/tmp/bb-master/sandbox/lib/python2.7/site-packages/buildbot/util/service.py", line 53, in reconfigServiceWithBuildbotConfig
        yield svc.reconfigServiceWithBuildbotConfig(new_config)
      File "/home/mike/tmp/bb-master/sandbox/lib/python2.7/site-packages/twisted/internet/defer.py", line 1532, in unwindGenerator
        return _inlineCallbacks(None, gen, Deferred())
    --- <exception caught here> ---
      File "/home/mike/tmp/bb-master/sandbox/lib/python2.7/site-packages/twisted/internet/defer.py", line 1386, in _inlineCallbacks
        result = g.send(result)
      File "/home/mike/tmp/bb-master/sandbox/lib/python2.7/site-packages/buildbot/www/service.py", line 209, in reconfigServiceWithBuildbotConfig
        self.setupSite(new_config)
      File "/home/mike/tmp/bb-master/sandbox/lib/python2.7/site-packages/buildbot/www/service.py", line 274, in setupSite
        "could not find plugin %s; is it installed?" % (key,))
    exceptions.RuntimeError: could not find plugin grid_view; is it installed?

      

In the last error message, you can see that the plugin was grid_view

not found. I'm not sure if I need to do anything else not covered in the docs. My guess is that when you install Buildbot, it will install the required required plugins.

Has anyone encountered this error when launching Buildbot? Any ideas on how to get Buildbot up and running?

Python version: 2.7.5
Buildbot version: 0.9.10
Twisted version: 17.5.0

      

Link to the docs I am following.

+3


source to share


1 answer


Looks like an issue with BuildBot documentation (or something changed in the process and the documentation is not up to date).

If you run the following command, your installation should work.



pip install buildbot-grid-view

      

+5


source







All Articles