Я хочу использовать расширение bugzilla, чтобы отслеживать коммиты в моих ошибках.
Я следовал там инструкциям http://hgbook.red -bean.com / read / processing-repository-events-with-hooks.html (§ bugzilla), и мой hgrc выглядит так:
[extensions]
hgext.bugzilla =
[hooks]
# run bugzilla hook on every change pulled or pushed in here
incoming.bugzilla = python:hgext.bugzilla.hook
[bugzilla]
host = localhost # mysql server where bugzilla database lives
db = bugzilla3 # database to connect to
user = bugzilla3 # user to connect to database as
password = blah # user's password
version = 3.6.3 # version of bugzilla installed
bzuser = valid_user@domain.tld # fallback bugzilla user name to record comments with
мой коммит выглядит так:
useful commit informations
bug: 123
Но это ничего не делает.
Итак, мои вопросы:
- совместимо ли расширение с bugzilla 3.6.3 (я использую mercurial 1.7.5)?
- это моя конфигурацияок?
- есть ли какой-нибудь журнал, который ртутный производит, чтобы найти что не так?
Спасибо