~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/lib/server_mgmt/drizzled.py

  • Committer: Lee Bieber
  • Date: 2011-03-28 18:11:45 UTC
  • mfrom: (2254.1.2 build)
  • Revision ID: kalebral@gmail.com-20110328181145-tfsb6s5ozhuvhfoq
Merge Patrick - Tweaked dbqp so that the existing slave tests work.
Merge Stewart - remove over 1000 lines of mysys

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
 
199
199
       """
200
200
 
201
 
       config_data = [ "master-host=127.0.0.1"
 
201
       config_data = [ "[master1]"
 
202
                     , "master-host=127.0.0.1"
202
203
                     , "master-port=%d" %self.master_port
203
204
                     , "master-user=root"
204
205
                     , "master-pass=''"
205
206
                     , "max-reconnects=100"
206
 
                     , "seconds-between-reconnects=20"
 
207
                     #, "seconds-between-reconnects=20"
207
208
                     ]
208
209
       outfile = open(self.slave_config_file,'w')
209
210
       for line in config_data: