Revision a4eae71f lib/bootstrap.py

b/lib/bootstrap.py
289 289
  InitConfig(constants.CONFIG_VERSION, cluster_config, master_node_config)
290 290
  cfg = config.ConfigWriter()
291 291
  ssh.WriteKnownHostsFile(cfg, constants.SSH_KNOWN_HOSTS_FILE)
292
  cfg.Update(cfg.GetClusterInfo())
292
  cfg.Update(cfg.GetClusterInfo(), logging.error)
293 293

  
294 294
  # start the master ip
295 295
  # TODO: Review rpc call from bootstrap
......
482 482
  cluster_info.master_node = new_master
483 483
  # this will also regenerate the ssconf files, since we updated the
484 484
  # cluster info
485
  cfg.Update(cluster_info)
485
  cfg.Update(cluster_info, logging.error)
486 486

  
487 487
  result = rpc.RpcRunner.call_node_start_master(new_master, True, no_voting)
488 488
  msg = result.fail_msg

Also available in: Unified diff