fixing buildmaster password variable name

This commit is contained in:
Tim Flink 2014-07-01 20:41:22 +00:00
parent fbeeb394bb
commit b12d1b21ec
2 changed files with 2 additions and 2 deletions

View file

@ -234,6 +234,6 @@ c['db'] = {
# This specifies what database buildbot uses to store its state. You can leave
# this at its default for all but the largest installations.
{% if deployment_type == 'dev' %}
'db_url' : "postgresql://{{ dev_buildmaster_db_user }}:{{ dev_buildmaster_db_pw }}@{{ dev_buildmaster_db_host }}/{{ dev_buildmaster_db_name }}",
'db_url' : "postgresql://{{ dev_buildmaster_db_user }}:{{ dev_buildmaster_db_password }}@{{ dev_buildmaster_db_host }}/{{ dev_buildmaster_db_name }}",
{% endif %}
}