<div dir="ltr">Hi,<br>I&#39;m trying to get hooks called on the server when commits come in over bzr+http://<br>I have tried a lot of things and got it working over bzr://<br><br>I&#39;m using this fcgi script:<br>&quot;&quot;&quot;<br>
#! /usr/bin/env python<br><br>import fcgi<br>from bzrlib.transport.http import wsgi<br><br>smart_server_app = wsgi.make_app(<br>&nbsp;&nbsp;&nbsp; root=&#39;/var/lib/gforge/bzrroot&#39;,<br>&nbsp;&nbsp;&nbsp; prefix=&#39;/bzr/&#39;,<br>&nbsp;&nbsp;&nbsp; path_var=&#39;REQUEST_URI&#39;,<br>
&nbsp;&nbsp;&nbsp; readonly=False)<br><br>fcgi.WSGIServer(smart_server_app).run()<br>&quot;&quot;&quot;<br><br>commits work fine over this, but the hooks does not seem to be called.<br><br>Any help would be appreciated, even if I have to hack on it a bit.<br>
My only option at the moment seems to be to use a cronjob to monitor the branch, which I&#39;m actually doing already to collect stats.<br><br>thanks<br>marius<br clear="all"><br>
</div>