Remove buildbot users mysql pass from the config file and change it to something else. (I set this up months ago and forgot it was there, previous versions of buildbot didn't use mysql.

Originally committed to SVN as r5093.
This commit is contained in:
Amar Takhar 2011-01-02 03:16:04 +00:00
parent 08750b94e8
commit ddc12d55ce

View file

@ -3,14 +3,14 @@
###############
c = BuildmasterConfig = {}
c['db_url'] = "mysql://buildbot:b33r@localhost/buildbot?max_idle=300"
# Import our passwords
passwd_file = open('passwd.py')
exec passwd_file
passwd_file.close()
c['db_url'] = "mysql://buildbot:%s@localhost/buildbot?max_idle=300" % passwd["mysql"]
# What port to listen on, used for try attempts as well.
c['slavePortnum'] = "tcp:9899:interface=68.233.14.102"